﻿.screen {
    height: 100vh;
    overflow: hidden;
}

.left-side {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 50%;
    left: 0;
    background-color: black;
}

.right-side {
    position: fixed;
    overflow: hidden;
    width: 50%;
    right: 0;
}


.login-control {
    height: 50px;
    width: 400px;
    margin: 5px;
}

button {
    background-color: white;
    color: black;
    height: 40px;
    width: 200px;
    transition: background-color 0.01s ease;
    margin-bottom: 30px;
}

    button.active {
        background-color: #0d6efd;
        color: white;
    }

.toggle-container {
    display: flex;
}

.login-form {
    position: fixed;
    top: 35%;
    right: 10%;    
    border-radius: 5px;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 10px;
    background-color: white
}

.button-submit {
    min-width: 80%;
    width: 400px;
    height: 45px;
    border-radius: 20px;
    background-color: #0d6efd;
    color: white;
}

@media screen and (max-width: 768px) {
    .login-control {
        width: 90%;
    }

    .login-form {
        width: 80%;
    }

}
