* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #dbdbdba1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    /* width: 60%; */
    /* max-width: 1200px;
    height: 600px; */
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    /* overflow: hidden; */
}

.left-section {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.left-section .text-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.left-section h2 {
    font-size: 24px;
}

.left-section p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
}

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

.login-box {
    max-width: 300px;
    width: 100%;
    text-align: center;
}

.login-box h1 {
    font-family: 'Lobster', cursive;
    font-size: 36px;
    color: #333;
}

.login-box h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #777;
}

.input-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.actions .btn {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.actions .forgot-password {
    font-size: 12px;
    color: #777;
}

.google-signin {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.new-account {
    margin-top: 20px;
    font-size: 14px;
}

.new-account a {
    color: #333;
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    width: 80%;

    }

    .left-section {
        height: 250px;
    }

    .right-section {
        padding: 20px;
    }

    .login-box {
        max-width: 100%;
    }
}
