/* site.css */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
 
.centered-box {
    max-width: 400px;
    margin: 80px auto;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
    .centered-box h2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .centered-box p {
        color: #555;
        font-size: 15px;
        margin-bottom: 30px;
    }

    .centered-box h2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .centered-box p {
        color: #555;
        font-size: 15px;
        margin-bottom: 30px;
    }

.icon-placeholder {
    font-size: 50px;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn-clasico {
    background-color: white;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 50%;
}

.btn-cancelar:hover {
    background-color: #f0f8ff;
}

.btn-continuar:hover {
    background-color: #0069d9;
}

.resultado-container {
    max-width: 400px;
    margin: 80px auto;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .resultado-container img {
        width: 80px;
        margin-bottom: 20px;
    }

    .resultado-container h2 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .resultado-container p {
        font-size: 15px;
        color: #555;
        margin-bottom: 30px;
    }

.btn-continuar {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
}

    .btn-continuar:hover {
        background-color: #0069d9;
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}