* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
/*for employer*/
.main-container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .left-content2 h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .left-content2 p {
    color: #666;
    margin-bottom: 20px;
  }
  
  .profile-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 5px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .right-form-box {
    background: #fff;
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 50px;
    width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .right-form-box h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .radio-group2 label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .email-id {
    display: flex;
    margin-bottom: 20px;
  }
  
  .email-id select, .email-id input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
  }
  
  .email-id select {
    margin-right: 10px;
    width: 25%;
  }
  
  .email-id input {
    width: 100%;
  }
  
  .checkbox-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .checkbox-group a {
    color: #007BFF;
    text-decoration: none;
  }
  
  .otp-btn {
    width: 100%;
    padding: 14px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .otp-btn:hover {
    background-color: #0056b3;
  }
  
/*exsisting employer page*/
.container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Left content styling */
.left-content {
    flex: 1;
    background: whitesmoke;
    color: rgb(23, 23, 23);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.left-content h1 {
    font-size: 32px;
    line-height: 1.4;
}

.left-content p {
    font-size: 16px;
}

.avatars {
    display: flex;
    margin-top: 10px;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

/* Right form styling */
.right-form {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #111;
}

/* Radio buttons styling */
.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    gap: 8px;
    color: #333;
}

.radio-group input[type="radio"] {
    accent-color: #007bff;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Input fields */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin: 12px 0 20px;
    border: 1.8px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Password field wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}

/* Forgot password link */
.forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 25px;
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #0056b3;
}

/* Submit button */
.login-btn {
    width: 100%;
    padding: 14px 0;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    .left-content {
        padding: 30px;
        align-items: center;
        text-align: center;
    }

    .right-form {
        padding: 30px 20px;
    }
}