/* Bordered form */
form {
    border: 3px solid #f1f1f1;
}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
    opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Add padding to containers */
.container {
    padding: 16px;
}

/* The "Forgot password" text */
span.psw {
    float: right;
    padding-top: 16px;
}

.login {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.login .form-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 35px;
    width: 100%;
}
.container {
    width: 90%;
    margin: auto;
}
.container-items {
    display: flex;
    gap: 25px;
}

.button-custom {
    display: flex;
    margin: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 15px;
    padding: 5px;
    color: black;
    background-color: #D9D9D9;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}
.btn-login {
    background-color: #002B82;
    border-radius: 10px;
    width: 50%;
    font-size: 16px;
}