
body {
    height: 100%;
    margin: 0;
    background-color: #f4f7fa; /* Light background */
    font-family: Arial, sans-serif;
    color: #333;
}
.registration-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for container */
}
.registration-container:hover {
    transform: translateY(-5px); /* Hover effect for subtle interaction */
}
/* Flexbox container for centering logo and text together */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center logo and text together */
    margin-bottom: 20px;
    padding: 10px 0; /* Vertically centers the content */
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-left: 5px; /* Reduced space between logo and text */
}
.logo {
    max-width: 150px; /* Increased size of the logo */
}
.toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.toggle-button {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #f8f9fa;
    color: #007bff;
    transition: background 0.3s, color 0.3s;
}
.toggle-button.active {
    background: #007bff;
    color: white;
}
.toggle-button:hover {
    background: #0056b3;
    color: white;
}
.form-group {
    margin-bottom: 15px;
    position: relative;
}
.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da; /* Subtle border color */
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .registration-container {
        margin: 20px;
        padding: 20px;
    }
}
.field-icon {
    position: absolute;
    right: 10px;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust to truly center */
    cursor: pointer;
    color: black; /* Eye icon color set to black */
}
