body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 50px auto;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.icon {
    margin-bottom: 20px;
    color: #007bff;
}

.icon i {
    font-size: 50px;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}


.password-wrapper input[type="text"] {
            padding-right: 10px;
        }
        .password-wrapper input[type="password"], .password-wrapper input[type="text"] {
            width: 100%;
            padding: 10px 40px 10px 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
        }
    

.password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-100%);
            cursor: pointer;
            color: #888;
            font-size: 18px;
        }
input[type="submit"], 
.btn-submit {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #2446B2;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover, 
.btn-submit:hover {
    background-color: #1e3a93;
}

.error {
    color: red;
    margin-bottom: 20px;
}

p {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.icon-container {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }

        .icon-container .btn {
            background-color: #2446B2;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .icon-container .btn i {
            margin-right: 20px;
        }

        .icon-container .btn:hover {
            background-color: darkblue;
        }

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DB4437;
    color: white;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    margin: 15px 0;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-btn i {
    margin-right: 30px;
}

.google-btn:hover {
    background-color: #c23321;
}

    