@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000814;
    color: #FAF4D7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(../images/authentication-customer-background-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    background-color: #001d3d;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0.3, 0, 0, 0.3);
    display: flex;
    max-width: 600px;
    width: 100%;
}

.form-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 70%;
}

.login-container img {
    height: 400px;
    border-radius: 10px;
}

h2 {
    color: #ffc300;
}

.login-table {
    margin-bottom: 20px;
}

.login-table label {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffc300;
}

.login-table input {
    width: 91%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ffd60a;
    border-radius: 5px;
    background-color: #003566;
    color: #FAF4D7;
    transition: border-color 0.3s;
}

.login-table input:focus {
    outline: none;
    border-color: #ffc300;
}

.submit-button {
    background-color: #ffc300;
    color: #001d3d;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #ffd60a;
}

.format {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer {
    background-color: #003566;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    margin-top: auto;
}

.back-button {
    text-decoration: none;
    color: #003566;
    font-size: 16px;
    margin-bottom: 0px;
    display: inline-block;
    width: 65px;
    background-color: #ffd60a;
    padding: 3px;
    border-radius: 10px;
}

.back-button:hover {
    color: #001d3d;
}

footer {
    background-color: #003566;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 10px;
    margin-top: auto;
    margin-bottom: 0;
    color:#ffd60a ;
}


@media (max-width: 780px) {

}
