body {
    background-color: #c4bcbc;
    font-family: 'Outfit', sans-serif;
}

.container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto;
}

.container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #443425;
    text-align: center;
    margin-bottom: 20px;
}

.constraints {
    font-style: italic;
    color: #dc3545;
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #d7b053;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #614f0e;
    box-shadow: none;
}

.btn {
    border: none;
    border-radius: 10px;
    background-color: #c8ad6d;
    color: #fff;
    width: 50%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #906c11;
}

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

.text-center a {
    color: #c99f5c;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}