body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

.deposit-container {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.deposit-header {
    text-align: center;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.Register-link a {
    text-decoration: none;
    color: pink; 
}

.Register-link a:hover {
    color: #660066;
}

.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="number"], .form-group select {
    width: 95%;
    height: 34px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
}

.form-group input[type="submit"] {
    width: 95%;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ffa07a;
    color: #fff;
    cursor: pointer;
}

.form-group input[type="password"] {
    width: 95%;
    height: 34px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #444;
}

.form-group input[type="submit"]:hover {
    background-color: #ff8c00;
}

@media (max-width: 768px) {
    .deposit-container {
        width: 95%;
        padding: 10px;
    }
}

/* Style the theme switch */

.theme-switch {
    vertical-align: middle;
}

.theme-switch input[type="checkbox"] {
    display: none;
}

.theme-switch label {
    display: block;
    width: 50px;
    height: 25px;
    background-color: #333;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}

.theme-switch label::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.theme-switch input[type="checkbox"]:checked + label::before {
    transform: translateX(25px);
}

.theme-switch input[type="checkbox"]:checked + label {
    background-color: #ffa07a;
}

/* Update the dark and light theme classes */
.dark-theme {
    background-color: #1a1a1a;
}

.dark-theme .deposit-container {
    background-color: #333;
}

.light-theme {
    background-color: #f0f0f0;
}

.light-theme .deposit-container {
    background-color: #fff;
    color: #333;
}

.light-theme .deposit-container input[type="text"], .light-theme .deposit-container input[type="email"], .light-theme .deposit-container input[type="number"], .light-theme .deposit-container select {
    background-color: #f0f0f0;
    color: #333;
}
