﻿/* Honeypot - not visible to users */
.website-url-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

/* Registration page header styling */
.registration-page .register-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* OSAAP BlueID logo for registration page */
.blueid-register-logo {
    flex-shrink: 0;
}

/* Registration page title styling */
.register-header h2 {
    color: #1565c0;
    font-weight: 600;
    margin-bottom: 0;
}

/* Agreement sections */
.agreement-section {
    border-left: 3px solid #e3f2fd;
    padding-left: 15px;
    background-color: #fafafa;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
}

/* Accepted agreement styling */
.agreement-section.agreement-accepted {
    border-left-color: #28a745;
    background-color: #f0fff4;
}

/* Disabled checkbox styling */
.agreement-section .form-check-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.agreement-section .form-check-input:disabled:checked {
    background-color: #28a745;
    border-color: #28a745;
}

/* Form card styling */
.card-header h4 {
    color: #1565c0;
}

/* Responsive header for small screens */
@media (max-width: 480px) {
    .registration-page .register-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .register-header h2 {
        font-size: 1.5rem;
    }

    .blueid-register-logo svg {
        width: 60px;
        height: 60px;
    }
}
