body {
    background: #fff;
}
.login-page {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    margin: 0;
    align-items: center;
    background: #fff;
}
.container {
    background: url('/img/login/login.jpg') no-repeat center center;
    background-size: cover;
    width: 550px;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.login-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.contact-form {
    display: flex;
    flex-direction: column;
    width: 410px;
}
.contact-form input {
    margin-bottom: 15px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    height: 33px;
    background: rgba(255,255,255,0.9);
}
.login-join-link {
    text-align: center;
    margin: 15px 0;
    font-size: 25px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.login-join-link a {
    color: #8741FB;
    text-decoration: none;
    font-weight: bold;
}
.btn2 {
    background-color: #8741FB;
    color: white;
    padding: 10px;
    border: none;
    height: 70px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
.btn2:hover {
    background-color:  #8741FB;
}

@media (max-width: 600px) {
    .container {
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        background-size: cover !important;
        background-position: center center !important;
        min-width: unset !important;
        min-height: unset !important;
    }
    .contact-form {
        width: 90vw !important;
        min-width: unset !important;
    }
}