﻿body {
    background: url(../images/login.jpg) no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(10px);
    font-family: 'Poppins Regular';
}

    /* Overlay for subtle dark effect */
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

/* Form Container Styling */
.agent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.agent-card {
    background-color: #020617;
    color: #FED7AA;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    margin-bottom: 60px;
}

    .agent-card h3 {
        color: #FED7AA;
        text-align: center;
        margin-bottom: 20px;
    }

    .agent-card input,
    .agent-card select {
        border: 1px solid #64748B;
        border-radius: 5px;
        padding: 10px;
        color: #020617;
    }

        .agent-card input::placeholder {
            color: #64748B;
        }

.btn-submit {
    background-color: #EA580C;
    color: #FFFFFF;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

    .btn-submit:hover {
        background-color: #FED7AA;
        color: #EA580C;
    }

.form-footer {
    text-align: center;
    margin-top: 15px;
    color: #64748B;
}

    .form-footer a {
        color: #EA580C;
        text-decoration: none;
    }

        .form-footer a:hover {
            text-decoration: underline;
        }
