@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background-color: #f4f7f6; /* Direct Color used here */
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    width: 380px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.header-area {
    background-color: #0a2d26; /* Direct Color used here */
    padding: 25px;
    text-align: center;
    color: #ffffff;
}

.header-area h3 {
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 22px;
    text-transform: lowercase;
}

.footer-area {
    background-color: #0a2d26; /* Direct Color used here */
    padding: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 1px;
}

.card-body {
    padding: 40px 30px;
}

.instruction-text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
    text-align: center;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dddddd;
    font-size: 14px;
}

.form-control:focus {
    border-color: #0a2d26;
    box-shadow: none;
    outline: none;
}

.btn-continue {
    background-color: #0a2d26; /* Direct Color used here */
    color: #ffffff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-continue:hover {
    background-color: #154d43; /* Slightly lighter green for hover */
    transform: translateY(-2px);
}

.login-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #0a2d26;
    text-decoration: none;
    font-size: 13px;
}