body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.signup-container {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.signup-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
}

.signup-form h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-size: 31px;
}

input:focus {
    border: none;
}

.btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #ef6603;
    background: transparent;
    border: 2px solid #ef6603;
}

.btn:hover {
    background-color: #ef6603;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(0.50turn, #007474, #fff);
    height: 100vh;
    padding: 0 50px;
}

.signup-h1 {
    margin: 0;
    font-size: 30px;
    color: #235050;
}

.content img {
    height: 100px;
}

.day-selection {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.day {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.selected {
    background: radial-gradient(60% 70% at 0 0, rgba(35, 166, 176, .5) 0, rgba(35, 166, 176, .15) 50%, rgba(35, 166, 176, 0) 100%), radial-gradient(50% 115% at 100% 100%, #f69e89 0, hsla(12, 86%, 75%, 0) 100%), #0f6973;
    color: white;
    border-color: #4CAF50;
}

.or-p {
    display: inline-block;
    background-color: #e4e4e4;
    border-radius: 46px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 666;
}

.or-div {
    position: relative;
}

.or-hr {
    position: absolute;
    width: 100%;
    top: 21%;
    color: #333;
    background: #333;
    height: 1px;
    border: none;
}

.btn i {
    margin: 0px 10px;
}

.apple-btn {
    border-color: #333;
    color: #333;
}

.anchor a {
    color: #333;
    text-decoration: none;
}

/* Style for the top-up message */
#topupMessage {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #007474;
    cursor: pointer;
}

.password-container {
    position: relative;
}

/* Password validation styles */
.password-validation {
    display: none;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
    font-size: 14px;
}

.validation-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.validation-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.validation-item.valid {
    color: #28a745;
}

.validation-item.invalid {
    color: #dc3545;
}

.validation-item.valid i {
    color: #28a745;
}

.validation-item.invalid i {
    color: #dc3545;
}