/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
}

/* Login form container */
.container {
    position: relative;

    height: auto;
}
.background-image {
    position: fixed; /* Keeps the image fixed in the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.card {
    max-width: 500px;
    margin: auto;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(77, 74, 74, 0.634);
    border-radius: 10px;
    background-color: rgba(37, 35, 35, 0.323);
}

.login-form {
    margin-top: 20px;
}

.form-group {
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.form-group a {
    color: white;
}

.titulliForgotPass {
    font-family: "Montserrat", sans-serif;
    padding-bottom: 16px;
}

/*3 CSS to style the button */
#timerButton {
    cursor: pointer;
}
/* CSS to style the button when it's disabled */
#timerButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.timerDisplay {
    font-size: 14px;
    margin-top: 10px;
    max-width: 390px;
    color: white;
}

.emailLabel {
    padding-bottom: 6px;
}
.inputEmail {
    padding-bottom: 16px;
}

.logoName {
    max-width: 200px;
    height: auto;
}
