/* =========================================
   OSAP Frontend Common/Page CSS
   ========================================= */

/* Main container layout */
.main-container {
    padding: 40px 0;
    background-color: #e6f0f7;
}

/* Left: Guidelines */
.guidelines-card {
    background-color: #ffffff;
    border: 1px solid #c8dbea;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    padding: 20px 25px;
    height: 100%;
    overflow-y: auto;
}

.guidelines-card h3 {
    color: #194f73;
    font-weight: 700;
    margin-bottom: 18px;
}

.guidelines-card table th {
    width: 40px;
    text-align: center;
}

.guidelines-card table td {
    vertical-align: top;
    font-size: 13.5px;
}

.guidelines-card span {
    display: block;
    line-height: 1.5;
}

.guidelines-card i {
    color: #e53935;
}

/* Right: Registration Form */
.reg-form {
    background-color: #ffffff;
    border: 1px solid #c8dbea;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
    padding: 25px 30px;
}

.reg-form h3 {
    color: #194f73;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #194f73;
    padding-bottom: 10px;
}

.label small strong {
    color: red;
}

.input-wrapper {
    position: relative;
}

.eyespan {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #194f73;
    cursor: pointer;
}

.btn-success {
    background-color: #2f855a;
    border: none;
}

.btn-success:hover {
    background-color: #276749;
}

.blink_me {
    animation: blinker 1.3s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Footer */
html,
body {
    height: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    background: var(--light-gray);
}

/* Main content area */
.main {
    flex: 1 0 auto;
    padding-top: 105px;
}

/* Footer sticky bottom */
.site-footer {
    margin-top: auto;
    flex-shrink: 0;
    color: #fff !important;
}

.site-footer a,
.site-footer span,
.site-footer p,
.site-footer div {
    color: #fff !important;
}

@media (max-width: 1199px) {
    .main {
        padding-top: 80px;
    }
}

@media (max-width: 600px) {
    .main {
        padding-top: 60px;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .guidelines-card {
        margin-bottom: 20px;
    }
}