Spaces:
Sleeping
Sleeping
File size: 1,682 Bytes
1de3092 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
.main-container {
background-color: #f8f9fa;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 10px;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h1 {
color: #4a4a4a;
font-weight: bold;
}
.login-container {
max-width: 500px;
margin: 0 auto;
padding: 30px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.input-group {
margin-bottom: 15px;
}
.btn-primary {
background-color: #3498db;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn-primary:hover {
background-color: #2980b9;
}
.btn-secondary {
background-color: #95a5a6;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn-secondary:hover {
background-color: #7f8c8d;
}
.register-link {
text-align: center;
margin-top: 15px;
}
.user-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding: 10px;
background-color: #e8f4fd;
border-radius: 5px;
}
.form-card {
padding: 20px;
background-color: white;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.tab-content {
padding: 20px;
background-color: white;
border-radius: 0 0 8px 8px;
min-height: 400px;
}
/* Hide Gradio footer */
footer {
display: none !important;
}
|