@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

body {
    display: flex;
    height: 100vh;
}

.left {
    flex: 1;
    background-color: #AC0340;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.left img {
    max-width: 200px;
    margin-bottom: 30px;
}

.left h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.left p {
    font-size: 14px;
    color: #f0f0f0;
}

.right {
    flex: 1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-box {
    width: 100%;
    margin: auto;

}

.login-box img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 180px;
}


.login-box h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.login-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-box a {
    color: #A6003B;
    font-size: 14px;
    text-decoration: none;
}

.login-box a:hover {
    text-decoration: underline;
}

.login-box button {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    background: linear-gradient(60deg, #AC0340 13.4%, #AC0340 86.6%);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.login-box button:hover {
    background: #D61459;
}

@media (max-width: 900px) {
    body {
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        flex: none;
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
}
