* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

form {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 90vh;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 15px;
}

input,
select,
.file-upload {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid #444;
}

.file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 13px;
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload i {
    font-size: 17px;
    color: yellow;
    background-color: black;
    border-radius: 50%;
    padding: 6px;
    margin-right: 10px;
}

.file-name {
    font-size: 12px;
    color: black;
    font-weight: bold;
}

input::placeholder {
    color: #888;
}

select {
    background-color: #f9f9f9;
}



button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
}

button:hover {
    background-color: #444;
}

.submit-btn {
    background-color: black;
    color: yellow;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: yellow;
    color: black;
}

.login {
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.login a {
    color: orange;
    text-decoration: none;
    font-weight: bold;
}

.login a:hover {
    text-decoration: underline;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 1rem;
}

.swal-confirm-button
{
    color: white;
    background-color: black;
    border-radius: 25px;
}


/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    form {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 10px;
    }

    button {
        padding: 8px;
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .login {
        font-size: 12px;
    }
}