*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HelveticaNowDisplay-Bold',sans-serif;

}

@font-face {
    font-family: 'HelveticaNowDisplay-Bold';
    src: url('/public_html/fonts/HelveticaNowDisplay-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

input:-webkit-autofill {
    appearance: none;
    background-color: #DFFFEA !important;
    color: inherit !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: inherit !important;
}

/* General container settings */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
    background-color: #f5f5f5;
}

/* Login form container */
.log_container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Form headings */
.log_container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Input fields */
.log_container input[type="text"],
.log_container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    background: #17C653;
}


/* Error messages */
.log_container span {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* Button */
.log_container button {
    width: 100%;
    padding: 10px;
    background-color:#17C653;
    color: white;
    border: none!important;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;

}

/* Forgot password link */


.log_container a.log:hover {
    text-decoration: underline;
}



/* Container */
.password-change-container {
    max-width: 400px;
    margin: 200px auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.password-change-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Form Group */
.password-change-container .form-group {
    margin-bottom: 15px;
}

/* Labels */
.password-change-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Inputs */
.password-change-container input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
.password-change-container .btn-submit {
    width: 100%;
    padding: 10px;
    background-color:#17C653;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.password-change-container .btn-submit:hover {
    background-color: #45a049;
}

/* Error Message */
.password-change-container .error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Success Message */
.password-change-container .success-message {
    color: #2ecc71;
    font-size: 14px;
    margin-bottom: 10px;
}


