* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    body{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        background: linear-gradient(100deg,blue, #6c3483);
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 350px;
        overflow: hidden;
    }


    #login_form {
        position: absolute;
        top: 50%;
        left: 50%;
        display: flex;
        flex-direction: column;
        width: 350px;
        max-width: 90%;
        gap: 1rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transform: translate(-50%, -50%);
        border-radius: 10px;
        box-shadow: 3px 3px rgba(0, 0, 0, 0.5), -1em 1.4em rgba(0, 0, 0, 0.541);
    }

    .login_usuario{
        font-weight: bold;
        color: white;
        text-shadow: 2px 2px 4px #2a013a;
    }

    .login_contraseña{
        font-weight: bold;
        color:white;
        text-shadow: 2px 2px 4px #2a013a;
    }

    .login_usuario_text{
        padding: 10px;
        border-radius: 8px ;

    }

    .login_contraseña_text{
        padding: 10px;
        border-radius: 8px ;

    }

    .btn_ingresar{
        padding: 10px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        border: 1px solid #0ff;
        border-radius: 8px;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.5s;
        background-color: rgb(7, 38, 58);
        box-shadow: 0 0 10px #0ff,0 0 40p;
    }
    .btn_ingresar:hover{
        background: #0ff;
        color: black;
        box-shadow: 0 0 20px #0ff,0 0 50px #0ff;
    }

    /******************  Figuras  ****************************/

    #circle{
        width:600px;
        height:35px;
        position: absolute;
        transform: rotate(-45deg);
        border: 1px solid black;
        border-radius: 25px;
        top: 50%;
        left: 26%;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: rgb(255, 255, 255);
    }

    #circle1{
        width:300px;
        height:20px;
        position: absolute;
        transform: rotate(-45deg);
        border: 1px solid black;
        border-radius: 25px;
        top: 50%;
        left: 31%;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: rgb(255, 255, 255);
    }

    #circle2{
        width:300px;
        height:20px;
        position: absolute;
        transform: rotate(-45deg);
        border: 1px solid black;
        border-radius: 25px;
        top: 50%;
        left: 44%;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: rgb(255, 255, 255);
    }

    #circle3{
        width: 200px;  /* Ancho del semicírculo */
        height: 200px;  /* La mitad de la altura para hacer el semicírculo */
        position: absolute;
        background-color: rgb(228, 2, 2);
        border: 1px solid black;
        border-radius: 100px 100px 100px 100px; /* Redondea solo la parte superior */
        transform: rotate(-180deg);
        box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.911);
        top: 40%;
        left: 42%;
    }

/******************Logo clauger*******************/

/* Contenedor principal del logo */
.logo {
    position: relative;
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    margin-top: 20px;
}
