/**
 * KnowSingpass Public Styles
 */

/* Singpass Button */
.singpass-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #e03c31;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.singpass-button:hover,
.singpass-button:focus {
    background-color: #c62a23;
    color: #fff;
    text-decoration: none;
}

.singpass-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url('../images/singpass-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Success Message */
.knowsingpass-success-message {
    margin-bottom: 0px;
    padding: 15px;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    color: #3c763d;
}

/* Protected Content */
.singpass-protected-content {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    text-align: center;
}

.singpass-protected-message {
    margin-bottom: 15px;
    font-weight: 500;
    color: #495057;
}
