/* Custom styles for Sistema de Arbitraje Electrónico */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    background-image: url('/static/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85) 0%, rgba(45, 55, 72, 0.85) 100%);
    z-index: -1;
}

/* Login Page Styles */
.wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.user-img {
    text-align: center;
    margin: 20px 0;
}

.user-img img {
    border-radius: 50%;
    border: 3px solid #ddd;
}

.input-box {
    margin-bottom: 15px;
}

.group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.btn:active {
    background-color: #3d8b40;
}

.w3l-register-p {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.w3l-register-p a {
    color: #4CAF50;
    text-decoration: none;
}

.w3l-register-p a:hover {
    text-decoration: underline;
}

/* Add any additional custom styles as needed */
