﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    flex: 1;
    background-image: url('../images/1.png');
    background-size: cover;
    background-position: center;
}

.login-right {
    flex: 1;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    max-width: 450px;
    height: 550px;
    text-align: center;

    /* Center contents */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-logo {
    width: 200px;
    margin-bottom: 50px;
}

h2 {
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    width: 350px;
    margin-bottom: 20px;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

.form-control {
    width: 100%;
    max-width: 700px;
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}


.login-button {
    width: 50%;
    padding: 12px;
    background-color: #FF8017;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

    .login-button:hover {
        background-color: #EF3983;
    }

/* Mobile responsive */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        height: 40vh;
    }

    .login-right {
        height: 60vh;
        padding: 20px;
    }
}

/*left side*/
@font-face {
    font-family: 'Dunkin';
    src: url('../fonts/Dunkin.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Archivo-Regular.ttf') format('truetype');
}

.login-left {
    flex: 1;
    background-image: url('../images/1.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left-content {
    color: white;
    text-align: left;
    max-width: 600px;
    padding: 40px;
    font-family: 'Dunkin', sans-serif;
}

    .login-left-content h3 {
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        margin: 0 0 10px 0;
    }

    .login-left-content h1 {
        font-family: 'Dunkin', sans-serif;
        font-size: 48px;
        font-weight: bold;
        margin: 0 0 20px 0;
    }

    .login-left-content p {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        line-height: 1.6;
    }

