@import "../css/font.css";

html {
    font-size: 85%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background-image: url('../img/fondo.png');
    background-position: center center;
    background-size: cover;
    background-color: #002e2c;
    font-family: 'Chillax';
    height: 100vh;
    margin: 0;
}

.inicio {
    text-align: left;
    color: blue;

}

.container {
    background-image: url('../img/banner.jpg');
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h6 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

p {
    margin: 0;
    color: #495057;
    font-size: 1.2rem;
    font-weight: 601;
}

/* Formulario */
form {
    max-width: 600px;
    margin: 0 auto;
    
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 1.2rem;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    --bs-text-opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.text-danger{
    color: #DC3545;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Texto centrado */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Estilos de ayuda */
h6 {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin-top: -10px;
}
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-common {
    width: 100%;
    color: #fff;
    background-color: #00bcd4; 
    border-color: #00bcd4;    
}
.btn-common:hover {
    background-color: #00bcd4; 
    border-color: #00bcd4;
}
.log-btn {
    font-size: 1.25rem; 
    font-weight: bold;  
    padding: 12px 24px; 
}