/**
 * BMSIPO Under Construction Page Styles
 */

/* Reset and base styles */
body.bmsipo-under-construction {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0051A5 0%, #1E73BE 50%, #0066CC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* Container */
.uc-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Content box */
.uc-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.uc-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uc-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.uc-logo h1 {
    font-size: 2.5em;
    margin: 0;
    color: #0051A5;
    font-weight: 700;
}

/* Title */
.uc-title {
    font-size: 2.5em;
    margin: 0 0 20px 0;
    color: #2d3748;
    font-weight: 700;
}

/* Message */
.uc-message {
    font-size: 1.1em;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
}

.uc-message p {
    margin: 0 0 15px 0;
}

.uc-message p:last-child {
    margin-bottom: 0;
}

/* Password form */
.uc-password-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.password-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.password-input:focus {
    border-color: #0051A5;
    box-shadow: 0 0 0 3px rgba(0, 81, 165, 0.1);
}

.submit-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFC20E 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Error message */
.error-message {
    color: #e53e3e;
    font-size: 0.9em;
    margin: 10px 0 0 0;
    padding: 10px;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .uc-content {
        padding: 40px 30px;
    }

    .uc-title {
        font-size: 2em;
    }

    .uc-message {
        font-size: 1em;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .uc-container {
        padding: 15px;
    }

    .uc-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .uc-logo h1 {
        font-size: 2em;
    }

    .uc-title {
        font-size: 1.75em;
    }

    .password-input,
    .submit-button {
        font-size: 14px;
    }
}
