.container-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30%;
}

.container-inputs input {
    width: 200px;
    height: 35px;
    border-radius: 10px;
    border: transparent;
    padding: 0 15px;
}

.container-inputs input::placeholder {
    color: #050816;
    font-size: 12px;
    font-family: "Goldman", sans-serif; 
}

.container-inputs input:focus {
    outline: none;
    border: 2px solid #A3E635;
}


.container-inputs .contrasena-container {
    position: relative;
    margin: 0;
    padding: 0;
}

.contrasena-container svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #050816;
    height: 20px;
    width: 20px;
}

.contrasena-container svg:hover {
    cursor: pointer;
}

a {
    text-decoration: underline;
    color: #A3E635;
    font-size: 13px;
}

.error-message {
    font-size: 13px;
    font-family: "Goldman", sans-serif;
    color: red;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.1);
}

.success-message {
    font-size: 13px;
    font-family: "Goldman", sans-serif;
    color: #A3E635;
    padding: 8px 12px;
    margin-top: 10px;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(163, 230, 53, 0.1);
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header {
        position: fixed;
        top: 20px;
    }

    .container>span {
        display: none;
    }

    .container1 {
        margin-top: 50%;
        padding-bottom: 20%;
    }
}
