/* Cognito Hosted UI Custom Styles */

/* Logo Customizations */
.logo-customizable {
    max-width: 60%;
    max-height: 30%;
}

/* Banner Styling */
.banner-customizable {
    padding: 25px 0;
    background-color: #e3e3e3;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Label Styling */
.label-customizable {
    font-weight: bold; /* More emphasis compared to previous 400 */
    color: #333;
    margin-top: 10px;
}

/* Descriptive Text Styling */
.textDescription-customizable{
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.idpDescription-customizable {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

/* Legal and Small Texts */
.legalText-customizable {
    color: #747474;
    font-size: 11px;
}

/* Submit Button Styling */
.submitButton-customizable {
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 10px;
    height: 40px;
    width: 100%;
    color: #fff;
    background-color: #4a90e2; /* Using your button color blue-500 */
    border: none;
    border-radius: 4px;
}

.submitButton-customizable:hover {
    background-color: #357abd; /* blue-700 for hover */
}

/* Error Message Styling */
.errorMessage-customizable {
    padding: 5px;
    font-size: 14px;
    background: #F5F5F5;
    border: 2px solid #D64958;
    color: #D64958;
}

/* Input Field Styling */
.inputField-customizable {
    width: 100%;
    height: 34px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.inputField-customizable:focus {
    border-color: #66afe9;
    outline: 0;
}

/* IDP (Identity Provider) Button Styling */
.idpButton-customizable {
    height: 40px;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    background-color: #5bc0de; /* Light blue for IDP buttons */
    border-color: #46b8da;
}

.idpButton-customizable:hover {
    background-color: #31b0d5;
}

/* Social Button Styling - Assuming same as IDP for visual consistency */
.socialButton-customizable {
    border-radius: 2px;
    height: 40px;
    margin-bottom: 15px;
    padding: 1px;
    text-align: left;
    width: 100%;
    background-color: #5bc0de;
    border: 1px solid #46b8da;
}

/* Redirect Links Styling */
.redirect-customizable {
    text-align: center;
    color: #4a90e2;
}

/* Password Validation Indicators */
.passwordCheck-notValid-customizable {
    color: #DF3312; /* red tone for invalid password */
}

.passwordCheck-valid-customizable {
    color: #19BF00; /* green tone for valid password */
}

/* Background Styling */
.background-customizable {
    background-color: #fff; /* Ensuring a clean white background */
}
