/* Container styles */
.formbox {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e0f7fa;
    /* Light blue background */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Title styling */
.title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #00796b;
    /* Dark teal */
}

/* Form styling */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input field and label styling */
.input_field label {
    font-size: 1rem;
    color: #004d40;
    /* Darker teal */
    margin-bottom: 5px;
    display: inline-block;
}

.input_field .input {
    width: 100%;
    padding: 10px;
    border: 1px solid #b2dfdb;
    border-radius: 5px;
    font-size: 1rem;
    color: #004d40;
    /* Darker teal */
    background-color: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

.input_field .input:focus {
    border-color: #00796b;
    /* Dark teal */
    box-shadow: 0 0 5px rgba(0, 150, 136, 0.3);
}

/* Button styling */
.btn {
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #00796b;
    /*Dark teal */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.btn:hover {
    background-color: #004d40;
    /* Darker teal */
}