﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    width: 100%;
}

.left-panel {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

    .left-panel img {
        width: 90px;
        margin-bottom: 15px;
    }

    .left-panel h2 {
        color: #222;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 600;
    }

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 3px solid #5156BE;
}

    .login-box h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 8px;
    }

    .login-box p {
        font-size: 13px;
        color: #777;
        margin-bottom: 20px;
    }

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

    .input-group label {
        display: block;
        font-size: 14px;
        color: #555;
        margin-bottom: 6px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 15px;
        outline: none;
    }

        .input-group input:focus {
            border-color: #5156BE;
        }

.btn {
    width: 100%;
    background: #5156BE;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn:hover {
        background: #7B4379;
    }

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
}

    .footer a {
        color: #5156BE;
        text-decoration: none;
    }

.right-panel {
    flex: 1;
    background: linear-gradient(rgba(162, 29, 42, 0.85), #5156BE), url('../assets/images/GGy5nK9jpDVxMMGNHKhAytNflrckT7LGK7dpVygy.jpeg') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

    .right-panel p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 500px;
    }

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .right-panel {
        height: 300px;
    }
}
