﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Trebuchet MS', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.welcome-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.logo {
    margin-bottom: 40px;
}

    .logo h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 5px;
        background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo .subtitle {
        font-size: 16px;
        opacity: 0.9;
        margin-left: 5px;
    }

.welcome-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.welcome-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.badges {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 15px;
}

.badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.login-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.login-form {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

    .login-form h3 {
        font-size: 28px;
        color: #333;
        margin-bottom: 40px;
        text-align: center;
    }

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-size: 14px;
        font-weight: 500;
    }

    .form-group input {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e1e4e8;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #fafbfc;
    }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .form-group input::placeholder {
            color: #adb5bd;
        }

.forgot-password {
    text-align: right;
    margin-top: -15px;
    margin-bottom: 25px;
}

    .forgot-password a {
        color: #667eea;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .forgot-password a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    .btn-login:active {
        transform: translateY(0);
    }

.divider {
    text-align: center;
    margin: 30px 0;
    color: #adb5bd;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: #e1e4e8;
    }

    .divider span {
        background: white;
        padding: 0 15px;
        position: relative;
    }

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

    .signup-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .welcome-section {
        padding: 40px;
        min-height: 250px;
    }

    .logo h1 {
        font-size: 36px;
    }

    .welcome-text h2 {
        font-size: 24px;
    }

    .welcome-text p {
        font-size: 16px;
    }

    .badges {
        display: none;
    }
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
}
