body {
    background-image: url("/static/images/accounts/enter_screen.796bfc30e36a.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed; /* Static picture */
}
.container {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    text-align: center;
}
.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}
.form-control {
    margin-bottom: 15px;
    font-size: 14px;
}
.form-control small {
    font-size: 12px;
}
.btn-custom {
    background-color: #6B6C9F;
    color: #fff;
    border-radius: 30px;
    margin-top: 10px;
}
.btn-custom:hover {
    background-color: #8080B1;
}
.register-link {
    margin-top: 15px;
    display: block;
    color: #000000;
}
.error-text {
    color: #a94442;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: left;
}
.form-label {
    text-align: left; /* Aligns the text to the left */
    display: block;   /* Make sure that the element occupies the entire width */
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    margin-top: 15px;
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.google-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
