:root {
    --primary-color: rgb(0, 72, 152);
    --hover-color: rgb(4, 86, 180);
    --background-color: #515151;
}

body {
    background-color: var(--background-color);
    background-image: url('/img/logos/bg.png');
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-position: center top;
    background-repeat: repeat-x;
    background-attachment: fixed;
    /* background-position: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.container {
    background: rgba(255, 255, 255, 0.418);
    border-radius: 20px;
    max-width: 400px;
    padding: 40px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
    margin: auto;
    margin-right: 15%;
    margin-top: 8%;
    position: relative;
}

.container img {
    max-width: 100%;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color), 0.25);
}

.submit {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
a.submit{
    color: white;
}

.btn-container a.submit {
    background-color: transparent;
    border: none;
    transition: color 0.3s;
}


.btn-container {
    display: flex;
    justify-content: space-between;
}


.submit:hover {
    background-color: var(--hover-color);
    color: white;
}

.forgot-password-container {
    text-align: left;
}

.forgot-password-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-password-link:hover {
    color: #555;
}

.alert {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 100%;
    max-width: 300px;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.alert button.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
