/* ========================================= */
/*      LOGIN STYLES - BOILERPLATE           */
/* ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f5f7;
    flex-direction: column;
}

.container {
    width: 900px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.welcome-section {
    flex: 1;
    background: linear-gradient(135deg, #e8eef8, #f9fafc);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.welcome-section h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.welcome-section p {
    font-size: 1em;
    text-align: center;
    color: #555;
    max-width: 85%;
}

.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.login-section h2 {
    color: #222;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1em;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #4a6cf7;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 900px) {
    .container {
        width: 100%;
        height: auto;
        flex-direction: column;
        margin: 20px;
    }

    .welcome-section {
        padding: 20px;
    }
}