/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body {
    background-color: #e9e9e9;
}

/* Blue Header */
.header {
    width: 100%;
    height: 50px;
    background-color: #1B2A3A;
}

/* Center Container */
.container {
    width: 100%;
    max-width: 500px;
    margin: 80px auto;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Rectangle Base Style (UPDATED WITH SHADOW) */
.rect {
    background-color: #cfcfcf;
    border: none;
    border-radius: 25px;
    margin: 15px auto;
    display: block;
    outline: none;
    font-size: 16px;

    /* ✅ Shadow Added */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hover Effect (Professional Look) */
.rect:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Small Buttons (Top Two) */
.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.small {
    width: 48%;
    height: 45px;
    cursor: pointer;
}

/* Large Input Fields */
.large {
    width: 100%;
    height: 50px;
    padding-left: 15px;
}

/* Medium Button */
.medium {
    width: 45%;
    height: 45px;
    cursor: pointer;
}

/* Bottom Text */
.signup-text {
    margin-top: 15px;
    font-size: 12px;
    color: #333;
}

.signup-text a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

.top-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    height: var(--header-height);
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.top-header__logos {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-header__logo {
    height: 48px;
    width: auto;
}

.top-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.top-header__right {
    display: flex;
    align-items: center;
}

.top-header__pm {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Form Title */
.form-title {
    font-size: 22px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
}

/* Submit button */
.submit-btn {
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1B2A3A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.message {
    min-height: 20px;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
}

.message--success {
    color: #137a13;
    background: #e6f9e6;
    padding: 10px;
}

.message--error {
    color: #c0392b;
    background: #fde8e8;
    padding: 10px;
}