/* body styles */
body {
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Default background */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

body2 {
    background-color: #f4f4f4; /* Different background in another style */
    padding: 20px;
}

/* container styles */
.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Default max-width */
}

.container2 {
    max-width: 500px; /* Modified max-width */
}

.container3 {
    max-width: 800px; /* Another variation */
    border-radius: 8px; /* Modified border-radius */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Modified box-shadow */
}

/* h2 styles */
h2 {
    text-align: center;
    color: #333;
}

/* label styles */
label {
    display: block;
    margin-bottom: 10px;
    color: #666;
}

/* input styles */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

/* button styles */
button {
    width: 100%;
    padding: 10px;
    background-color: #2575fc;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #6a11cb;
}

button2 {
    background-color: #4CAF50; /* Different button color */
}

button2:hover {
    background-color: #45a049; /* Different hover color */
}

/* table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* message box styles */
.success, .error {
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.success {
    background-color: #4caf50;
    color: white;
}

.error {
    background-color: #f44336;
    color: white;
}

/* small text */
small {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
}

/* additional section styles */
.section {
    margin-bottom: 30px;
}
.quota-bar {
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.quota-bar .used {
    background: #2575fc;
    height: 20px;
}
