/* static/css/criar-conta.css */

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.container {
    width: 400px !important;
    max-width: 400px !important;
    padding: 2rem !important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2) !important;
    background-color: #ffffffd2 !important;
    border-radius: 8px !important;
    text-align: center !important;
    
}

h2 {
    margin-bottom: 1rem;
    color: #333;
}

.form-field {
    width: 100% !important;
    margin-bottom: 1rem;
}

.form-field label {
    display: flex;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-field input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.message {
    color: #d9534f;
    margin-bottom: 1rem;
}
