﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap");

.registrocasillero *,
.registrocasillero *::before,
.registrocasillero *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.registrocasillero {
    font-family: "Poppins", sans-serif;
    background: #DFDEDE;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0vh;
    height: 100vh;
    transform: translateY(-10px);
}

    .registrocasillero main {
        width: 100%;
        max-width: 500px;
        padding: 1rem;
    }

    .registrocasillero .form-box {
        background: white;
        border-radius: 1.5rem;
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .registrocasillero .logo {
        text-align: center;
        margin-bottom: 0rem;
    }

        .registrocasillero .logo img {
            width: 85px;
        }

        .registrocasillero .logo h2 {
            color: #404040;
            margin-top: 0.5rem;
        }

    .registrocasillero h3 {
        color: #404040;
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }

    .registrocasillero .input-wrap {
        position: relative;
        margin-bottom: 0.8rem;
    }

    .registrocasillero .input-field {
        width: 100%;
        border: none;
        border-bottom: 1px solid #bbb;
        padding: 6px 0;
        font-size: 1rem;
        background: transparent;
        outline: none;
        color: #333;
    }

        .registrocasillero .input-field:focus {
            border-bottom: 2px solid #404040;
        }

    .registrocasillero label {
        position: absolute;
        top: 6px;
        left: 0;
        font-size: 0.85rem;
        color: #999;
        pointer-events: none;
        transition: 0.3s ease;
    }

    .registrocasillero .input-field:focus + label,
    .registrocasillero .input-field:not(:placeholder-shown) + label {
        top: -14px;
        font-size: 0.75rem;
        color: #404040;
    }

    .registrocasillero .submit-btn {
        width: 100%;
        padding: 0.7rem;
        background: #404040;
        color: white;
        border: none;
        border-radius: 1rem;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 1rem;
    }

        .registrocasillero .submit-btn:hover {
            background: #C6C6C6;
        }

    .registrocasillero .text {
        text-align: center;
        font-size: 0.85rem;
        color: #555;
        margin-top: 1rem;
    }

        .registrocasillero .text a {
            color: #404040;
            text-decoration: none;
        }

    .registrocasillero .row-selects {
        display: flex;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .registrocasillero .select-wrap {
        flex: 1;
        position: relative;
    }

        .registrocasillero .select-wrap select.input-field {
            width: 100%;
            padding: 6px 0;
            font-size: 1rem;
            border: none;
            border-bottom: 1px solid #bbb;
            background: transparent;
            color: #333;
            appearance: none;
            outline: none;
        }

            .registrocasillero .select-wrap select.input-field:focus {
                border-bottom: 2px solid #404040;
            }

    .registrocasillero .submit-btn.registro {
        width: auto;
        padding: 0.75rem 2rem;
        display: block;
        margin: 1.2rem auto 0 auto;
    }

    .registrocasillero h2 {
        color: #a9adb4;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .registrocasillero .estado-proceso {
        margin-top: 1rem;
        color: #555;
        font-style: italic;
        text-align: center;
    }

    .registrocasillero .estado-error {
        color: #e53935;
        font-weight: 500;
        margin-top: 10px;
        text-align: center;
    }
