@font-face{
    font-family: "Averia Serif Libre";
    src: url(../AveriaSerif-Bold.ttf);
}
*{
    /* margin: 0;
    padding: 0; */
    font-family: "Averia Serif Libre";
}

        .body_registro {
            font-family: 'Arial', sans-serif;
            background-color: rgba(0, 0, 0, 0.8);
            width: 100%;
            min-height: 100vh;
            position: fixed;
            display: none;
            top: 0;
            left: 0;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-y: auto;
        }

        .container {
            background: #8B4513;
            border-radius: 20px;
            padding: 20px;
            width: 100%;
            max-width: 400px;
            max-height: 90vh;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
            margin: auto;
        }

        .form-container {
            background: #F5E6D3;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            position: relative;
        }

        .logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            overflow: hidden;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .title {
            font-size: 24px;
            color: #5D4037;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .subtitle {
            font-size: 14px;
            color: #DC143C;
            margin-bottom: 25px;
            font-style: italic;
        }

        .form-group {
            margin-bottom: 18px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #5D4037;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            background: white;
            color: #666;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
            transform: translateY(-1px);
        }

        .form-group input::placeholder {
            color: #999;
        }

        .btn-primary {
            width: 100%;
            background: #DC143C;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin: 20px 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background: #B71C1C;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
        }

        .divider {
            margin: 20px 0;
            color: #8D6E63;
            font-size: 13px;
        }

        .btn-secondary {
            background: transparent;
            color: #DC143C;
            border: 2px solid #DC143C;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
        }

        .btn-secondary:hover {
            background: #DC143C;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
            text-align: left;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 3px;
            width: auto;
            transform: scale(1.2);
            accent-color: #DC143C;
        }

        .checkbox-group label {
            font-size: 12px;
            color: #5D4037;
            line-height: 1.4;
            margin-bottom: 0;
            font-weight: normal;
        }

        .password-group {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #8D6E63;
            font-size: 16px;
        }

        .password-toggle:hover {
            color: #5D4037;
        }