﻿/* Reset basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background-color: #f3f5f7;
    color: #333333;
}

/* Center the card */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Card container */
.card {
    width: 90%;
    max-width: 480px;
    background-color: #ffffff;
    border-radius: 22px;
    padding: 36px 40px 30px 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Heading */
.card-title {
    text-align: center;
    font-weight: 700;
    color: #8b0000;
    font-size: 18px;
    letter-spacing: 0.6px;
    margin-bottom: 28px;
}

/* Instructions text */
.instructions {
    font-weight: 600;
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 40px;
}

    .instructions p + p {
        margin-top: 8px;
    }

.green {
    color: #007b3b;
}

/* Form layout */
.login-form {
    margin-top: 10px;
}

/* ITS label + textbox stacked */
.its-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 6px;
}

.its-input {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
    color: #555555;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    text-transform: uppercase;
}

    .its-input:focus {
        border-color: #008b8b; /* teal border */
        box-shadow: 0 0 0 1px #008b8b33; /* subtle glow */
    }

    .its-input::placeholder {
        color: #999999;
        letter-spacing: 1px;
    }

/* Proceed button as pill outline */
.proceed-btn {
    display: block;
    width: 190px;
    margin: 26px auto 0 auto;
    padding: 9px 0;
    border-radius: 22px;
    border: 2px solid #008b8b;
    background-color: #ffffff;
    color: #008b8b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

    .proceed-btn:hover {
        background-color: #008b8b;
        color: #ffffff;
        box-shadow: 0 6px 14px rgba(0, 139, 139, 0.35);
    }

/* Footer */
.footer {
    margin-top: 26px;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

    .footer b {
        font-weight: 700;
    }

