﻿


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a90e2, #1c54b2);
    color: #ffffff;
    padding: 20px;
}

.login-container {
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}


.logo-container {
    text-align: center;
    margin-bottom: 40px;
}


.logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 2px solid #ccc;
}

h1 {
    font-size: 26px;
    color: white;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 15px;
    color: white;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 6px;
    color: white;
    font-weight: 600;
    font-size: 10px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}



.dropdown-group {
    margin-bottom: 20px;
}

    .dropdown-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        font-size: 10px;
        color: #fff;
    }

.dropdown-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #4a90e2;
    pointer-events: none;
}

.dropdown-wrapper select {
    width: 100%;
    height: 36px;
    padding: 12px 36px 12px 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-weight: normal;
    background: #fff;
    color: #333;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

    .dropdown-wrapper select option {
        padding: 12px 16px;
        background-color: #ffffff;
        color: #333;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        min-height: 40px;
    }

        .dropdown-wrapper select option:hover {
            background-color: #f0f7ff;
            color: #4a90e2;
        }

        .dropdown-wrapper select option:checked,
        .dropdown-wrapper select option:checked:hover {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: #ffffff;
            font-weight: 500;
        }

.dropdown-wrapper::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #4a90e2;
    pointer-events: none;
}

.dropdown-wrapper select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.dropdown-wrapper select:disabled {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .dropdown-wrapper select {
        height: 44px;
        font-size: 14px;
        padding-left: 44px;
        padding-right: 40px;
    }

    .dropdown-wrapper::after {
        font-size: 16px;
        right: 16px;
    }

    .dropdown-icon {
        width: 18px;
        height: 18px;
        left: 14px;
    }
}



input[type="email"],
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: all 0.3s ease;
    height: 36px;
}

input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    background: #fff;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .checkbox-wrapper input {
        width: 8px;
        height: 8px;
        margin-right: 8px;
        accent-color: #4a90e2;
        cursor: pointer;
    }


.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4a90e2, #1c54b2);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(74,144,226,0.5);
    }

.forgot-password {
    color: #4a90e2;
    text-decoration: none;
}

    .forgot-password:hover {
        color: #1c54b2;
    }

.validation-error {
    font-size: 13px;
    color: #e53e3e;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    input[type="email"],
    input[type="text"],
    input[type="password"] {
        font-size: 14px;
        padding: 12px 14px 12px 38px;
    }

    .btn-login {
        font-size: 15px;
        padding: 12px;
    }
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #4a90e2;
}

input[type="email"],
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    background: #fff;
}
