﻿body {
    margin: 0;
    font-family: Segoe UI;
    background: linear-gradient(135deg,#0f1b33,#1d2f4f);
}

.auth-card {
    width: 460px;
    background: #e9e8ef;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.auth-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
    }

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #888;
    }

    .input-icon input,
    .input-icon select {
        width: 100%;
        padding: 12px 12px 12px 40px;
        border-radius: 8px;
        border: 1px solid #ddd;
        background: #f2f2f5;
        box-sizing: border-box;
    }
    .input-icon .eye {
        right: 12px;
        left: auto;
        cursor: pointer;
    }

.auth-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg,#3c63d8,#4b6be0);
    color: white;
    font-weight: 600;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

    .auth-footer a {
        color: #3c63d8;
        text-decoration: none;
    }
.logo-header {
    background: white;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .nav-logo img {
        height: 45px;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: 13px;
    color: #7b7b7b;
}

.logo-bottom {
    font-size: 22px;
    font-weight: 700;
}
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 460px 1fr;
    min-height: calc(100vh - 110px);
}

.auth-side {
    background: transparent;
}

.auth-center {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.auth-card {
    width: 100%;
    max-width: 460px;
    background: #e9e8ef;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}