﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: #ffffff;
    border-radius: 30px;
    /*    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);*/
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
/*
    .auth-card:hover {
        box-shadow: 0 15px 50px rgba(30, 64, 175, 0.12);
    }*/

.page {
    padding: 20px 35px;
    animation: fadeIn 0.3s ease-out;
}

    .page.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.header h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.header p {
    color: #64748b;
    font-size: 15px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"] {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.3s;
    outline: none;
    color: #1e293b;
}

input::placeholder {
    color: #94a3b8;
}

input:focus {
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s;
}

    .toggle-password:hover {
        color: #64748b;
    }

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-wrapper label {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    font-weight: 400;
}

.link-btn {
    background: none;
    border: none;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

    .link-btn:hover {
        color: #2563eb;
    }

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    letter-spacing: 0.5px;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

.footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 480px) {
    .page {
        padding: 40px 30px;
    }

    .header h2 {
        font-size: 28px;
    }
}


.company-logo {
    height: 35px;
    width: 130px;
    /*    border-radius: 100%;*/
}
