* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {    
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
}

.login-container {
    background-image: url('../images/BG-Login-1.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.login-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.login-left {
    width: 44%;
    padding: 50px;
}

.login-left p {
    font-size: 16px;
    margin: 20px 0 20px;
    color: #ffffff;
    line-height: 1.5;
}

.login-left form {
    display: flex;
    flex-direction: column;
}

.login-left input {
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
}

.login-left button {
    width: 50%;
    float: right;
    align-self: flex-end;
    padding: 15px;
    background-color: #9073fc;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #ffffff;
    margin-top: 15px;
}

.login-left button:hover {
    background-color: #5e50d4;
}

.login-left .forgot-password {
    margin-top: -35px;
    display: block;
    text-align: left;
    font-size: 14px;
    color: #ffffffbb;
    text-decoration: none;
}

.login-left .forgot-password:hover {
    text-decoration: underline;
    color: #ffffff;
}

.error-message {
    color: #aff358;
    font-size: 14px;
    display: block;
    margin-top: 8px;
}

