.signin-main {
    padding-top: 100px;
    min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding-bottom: 60px;
}

.signin-container {
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

.signin-content {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.signin-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.signin-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    max-height: 200px;
}

.signin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.role-section {
    margin-bottom: 20px;
}

.role-section h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.role-section p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #999;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.section-divider::before {
    margin-right: 15px;
}

.section-divider::after {
    margin-left: 15px;
}

.section-divider span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.app-badges img {
    height: 48px;
    transition: transform 0.2s ease;
}

.app-badges a:hover img {
    transform: scale(1.05);
}

.web-option-text {
    margin-top: 10px;
    margin-bottom: 10px !important;
    font-size: 0.9rem !important;
}

.btn-large {
    display: block;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 57, 148, 0.2);
}

.btn-secondary {
    background-color: white;
    color: #303994;
    border: 2px solid #303994;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #f0f1ff;
}

.btn-primary {
    background-color: #303994;
    color: white;
    border: 2px solid #303994;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #262d7a;
    border-color: #262d7a;
}
