/* wp-content/plugins/note-exel/view/styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles for Login Wrapper */
.login-wrapper {
    display: flex;
    /*height: 100vh; */
    align-items: center;
    justify-content: center;
   /* background-color: #f0f2f5;*/
}

.login-image img {
    max-width: 100%;
    height: auto;
}

.login-form-container {
    max-width: 400px;
    width: 100%;
    height: auto;
   /* background-color: #ffffff;*/
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.form-actions .remember-me {
    display: flex;
    align-items: center;
}

.form-actions .remember-me input {
    margin-right: 8px;
}

.form-actions .forgot-password {
    color: #7F265B;
    text-decoration: none;
    font-size: 14px;
}

.form-actions .forgot-password:hover {
    text-decoration: underline;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #7F265B;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #572844;
}


/* Archivo: css/dashboard-styles.css */

/* Reset de márgenes y rellenos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Contenedor del Dashboard */
/*
.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}
*/


/*****************************************************************************/

/* Dashboard */

/*************************************************************************************/
/* Para dispositivos pequeños (teléfonos móviles en modo vertical) */
@media (max-width: 480px) {
    /* login  */
    .login-form-container {
        padding: 10px;
    }
    .login-image img {
    display: none;
    }

    .login-form h2 {
        font-size: 18px;
    }
    
    
    /***********************************************************/
    /*
    
    /* Dashboard */
    
    
    /*********************************************************/
    
    /* Upload*/

    .upload-form h2 {
        font-size: 20px;
    }

    .upload-form h1 {
        font-size: 35px;
    }

    .form-group input {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}
