/* Intro Page Styles - Styles for login/register intro page */

/* Header and Footer Layout */
.header-container {
    background-color: #f1f2f3;
}

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* Centers vertically */
    margin: auto; /* Ensures horizontal centering */
    color: #515365 !important;
}

/* Page Header */
.header {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Custom Alert Styles */
.alert-info-custom {
    background-color: #e9f7fc;
    border-left: 5px solid #0071bc;
    padding: 15px;
    margin-bottom: 20px;
    color: #000000;
}

/* Card Styles */
.card {
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Button Styles */
.btn-green {
    background-color: #e5262b;
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 10px 15px;
}

.btn-green:hover {
    background-color: #aa1b20;
    color: #fff;
}

.btn-outline-green {
    color: #e5262b;
    border-color: #e5262b;
    font-weight: bold;
}

.btn-outline-green:hover {
    background-color: #e5262b;
    color: white;
}

/* Divider Styles */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

/* Form Styles */
.form-label {
    margin-bottom: 0px;
}

/* Registration Page - OTP Styles */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-inputs input {
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
    color: #000000;
}

.otp-inputs input:focus {
    border-color: #007bff;
}

/* Registration Page - Wizard Styles */
.subtitle-wizard {
    font-size: 1.2rem;
    font-weight: 500;
}

.back-link {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Remove underline on hover for back-link */
.back-link:hover {
    text-decoration: none;
}
