*{
    font-family: "Nunito", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-weight: 600;
  }
  html, body {
    width: 100%;
    height: 100%;
  }

body{
    margin: 0;
    /*font-family:*/
    background-image: url('../../../../assets/images/BackgroundLogin-Image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}


.login-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white; 
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(23,80,166, 0.1);
    text-align: left;
    max-width: 400px;
    width: 90%;   
    height: 500px;
}

.login-section h2{
    margin-bottom: 20px;
    color: #0056b3;
}

.login-section form {
    display: flex;
    flex-direction: column;
    
}

.login-section input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-section button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: rgb(23, 80, 166);
    color: white;
    cursor: pointer;
    width: 170px;
    margin-left: 75px;
    max-width: 170px;
    margin: 0 auto;
    display: block;
}

.login-section button:hover {
    background-color: #0056b3;
}

    

