@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
}

.auth-container {
    padding: 50px 10px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    max-width: 450px;
    width: 100%;
    padding: 40px 30px;
    background-color: #1e293b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header h3 {
    font-size: 28px;
    color: #e2e8f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: #e2e8f0;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 52px;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #e4e6fc;
    border-radius: 4px;
    background-color: transparent;
    outline: none;
    color: #e2e8f0;
}

.form-control::placeholder {
    color: #e2e8f0;
}

.auth-input-group {
    position: relative;
    color: #fff;
}

.auth-input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
}

.auth-checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

.custom-checkbox {
    display: none;
}

.custom-checkbox-label {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox:checked + .custom-checkbox-label .checkmark {
    background-color: var(--primary-color);
}

.custom-checkbox:checked + .custom-checkbox-label .checkmark::after {
    opacity: 1;
}

.auth-text {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #e2e8f0;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.auth-button {
    height: 52px;
    border: none;
    width: 100%;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.auth-button:hover {
    background-color: #4c45e0;
}