@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background-color: rgba(7, 1, 78, 0.11);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    padding: 50px 70px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.login img{
    max-width: 400px;
}

.login form{
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.login form input{
    font-family: Montserrat;
    width: 280px;
    height: 40px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid gray;
}

.login button{
    font-family: Montserrat;
    font-weight: bold;
    cursor: pointer;
    width: 288px;
    height: 44px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: #23272a;
    color: white;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
