:root {
    --amarillo: rgb(253, 194, 28);
    --amarilloOscuro: #c58000;
}

body {
    background-color: var(--amarillo);
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 60px 30px 30px 30px;
    /* espacio para el logo sobresaliente */
}

.logo-floating {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--amarilloOscuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    z-index: 1;
}

h2 {
    color: var(--amarilloOscuro);
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.btn-pink {
    background-color: var(--amarilloOscuro);
    color: white;
}

.btn-pink:hover {
    background-color: var(--amarillo);
}

.form-label {
    font-weight: 600;
    color: var(--amarilloOscuro);
    font-size: 14px;
}

.form-control {
    border: 2px solid var(--amarilloOscuro);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--amarillo);
    box-shadow: 0 0 0 0.2rem rgba(253, 124, 154, 0.25);
}