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

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #6b6fa8 0%, #2d2860 45%, #241f55 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.auth-box {
    width: 430px;
    padding: 55px 45px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    text-align: center;
    backdrop-filter: blur(12px);
}

.register-box {
    width: 520px;
}

.auth-box h1 {
    font-size: 42px;
    margin-bottom: 18px;
}

.auth-box p {
    margin-bottom: 35px;
    font-size: 18px;
    color: #e6e6f5;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-box {
    position: relative;
}

.input-box span {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.input-box input {
    padding-left: 48px;
}

input {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

button {
    height: 52px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #3b82f6;
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #2563eb;
}

a {
    display: block;
    margin-top: 22px;
    color: #e6e6f5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
} */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(86, 103, 180, 0.55), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(28, 85, 180, 0.35), transparent 35%),
        linear-gradient(135deg, #171438, #211c4f, #11152b);
    color: #f5f3ff;
}

.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.login-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b6cff;
    font-size: 28px;
    font-weight: 700;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #7c5cff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-box {
    width: 430px;
    background: rgba(127, 105, 169, 0.067) ;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
}

.auth-box h1 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
}

.auth-box p {
    text-align: center;
    color: #c9c2dd;
    margin-bottom: 30px;
}

.auth-box label {
    display: block;
    margin-bottom: 8px;
    color: #ddd6f3;
    font-weight: 600;
}

.input-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #322a567a;
    border: 1px solid #443a55;
    border-radius: 8px;
    padding: 0 14px;
    margin-bottom: 22px;
}

.input-box:focus-within {
    border-color: #7c5cff;
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.25);
}

.input-box input {
    width: 100%;
    height: 48px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 15px;
}

.input-box input::placeholder {
    color: #8f879d;
}

button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 7px;
    background: #7c5cff;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
}

button:hover {
    background: #6b4df0;
}

.auth-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.auth-links a {
    color: #b8a9ff;
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    color: white;
}

.error-box {
    background: rgba(220, 53, 69, 0.15);
    color: #ffb3bd;
    border: 1px solid rgba(220, 53, 69, 0.35);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}