/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

body {
    background: url('../img/banner-bg.jpg') no-repeat center center/cover;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 50px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2rem;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input:focus {
    border-color: #d44457;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #d44457;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #b4384a;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer a {
    color: #d44457;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 50px;
        max-width: 500px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .form-group label {
        font-size: 1.2rem;
    }

    .form-group input {
        font-size: 1.1rem;
    }

    .btn-submit {
        font-size: 1.4rem;
    }
}

.error {
    width: 100%;
    color: red;
    text-align: center;
    font-weight: 600;
}

footer{
    max-width : unset !important;
}
