@font-face {
    font-family: 'GothamRounded';
    src: url('../fonts/gothamrnd_book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
    font-family: 'GothamRounded', Arial, sans-serif;
}

.form-container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #0070D7;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 4px solid #E4002B;
    border-radius: 5px;
    box-sizing: border-box;
}

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

.form-group button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #FC4B4B;
}

.texto-comun {
    color: rgba(47,37,47,0.5)!important;
}

.text-qima {
    color: #FC4B4B!important;
}

.text-center {
    text-align: center!important;
}