﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background: url('./images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1200px; 
    min-height: 650px;
    background: transparent;
    border-radius: 60px;
    border: 15px solid white; 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.auth-card {
    background: white;
    flex: 1; 
    max-width: 600px; 
    padding: 50px 40px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
}

.auth-visual {
    flex: 2.5; 
    background: transparent;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 70px;
    margin-bottom: 10px;
}

.logo-name {
    font-weight: 800;
    font-size: 18px;
    color: #1a2b3c;
}

h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 8px;
}

.switch-mode {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.switch-mode a {
    color: #1a2b3c;
    font-weight: 700;
    text-decoration: none;
}

.auth-form {
    width: 100%;
}

.auth-form input {
    width: 100%;
    background: #f0f0e8;
    border: none;
    border-radius: 15px;
    padding: 16px 18px;
    margin-bottom: 12px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.btn-start {
    width: 100%;
    background: #1a2b3c;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
}

.btn-start:hover {
    background: #233e5c;
    transform: translateY(-2px);
}

.bigfo {
    font-size: 60px; 
    color: #325e81;   
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 900px) {
    .auth-visual {
        display: none;
    }
    .auth-container {
        max-width: 450px;
        border: 10px solid white;
    }
    .auth-card {
        border-radius: 45px;
        max-width: 100%;
        flex: 1;
    }
}

.agree-row{
 font-size: 13px;
}

.stat-card .loads{
    width: 50px;
    height: auto;
}