

/* Registration Container */
.register-class {
    justify-self: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    width: 750px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Left Side - Form */
.form_div {
    width: 55%;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

h1 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #f1f1f1;
    font-size: 14px;
}

/* Input Fields */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
    width: 95%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    outline: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

input:focus {
    border-color: #fff;
    box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5);
}

/* Error Message */
.error-message {
    color: #ff4f4f;
    font-size: 12px;
    margin-top: 5px;
}

/* Register Button */
#submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
    padding: 12px;
    border: none;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#submit-btn:hover {
    background: linear-gradient(135deg, #ff4f7a, #ff6388);
    transform: scale(1.05);
}

/* Already Have an Account Link */
a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 14px;
    margin-top: 12px;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #ffb3c1;
}

/* Right Side - Description */
.content_div {
    width: 40%;
    padding-left: 20px;
}

.content_div p {
    font-size: 14px;
    color: #f1f1f1;
    text-align: justify;
    line-height: 1.5;
}

/* Hover Effect */
.register-class:hover {
    transform: scale(1.02);
}
@media only screen and (max-width: 768px) {
    .form_div {
    width: 100%;}
    .register-class {
   
    display: block;
 
    width: 75%;}
    .content_div {
    width: 100%;}
}