
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group .col {
    margin-bottom: 15px;
}

.input-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #f7ce16;
    outline: none;
    box-shadow: 0 0 5px rgba(247,176,50,0.5);
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #b4211d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logoimg{
    width: 100%;
}

button:hover {
    background-color: #a61f1a;
}

.success{
    border-color: #00ff1e!important;
    outline: none!important;
    box-shadow: 0 0 5px #00ff1e!important;
}

.error{
    border-color: #ff0000!important;
    outline: none!important;
    box-shadow: 0 0 5px #ff0000!important;
}

.errorMessage{
    font-size: 13px;
    color: #b42224!important;
}

.errorContainer{
    margin-top: 10px;
}

/* Loading spinner */
.loading {
    display: none;
    text-align: center;
    padding: 10px;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    margin-top: 15px;
}

/* Success message */
.resultMessage.success {
    display: none;
    text-align: center;
    padding: 10px;
    color: #fff;
    background-color: #28a745;
    border-radius: 5px;
    margin-top: 15px;
}

/* Error message */
.resultMessage.error {
    display: none;
    text-align: center;
    padding: 10px;
    color: #fff;
    background-color: #dc3545;
    border-radius: 5px;
    margin-top: 15px;
}


@media (max-width: 600px) {
    form {
        padding: 15px;
    }
}
