/* register.css */
/* Existing styles... */
.form h1{
    text-align: center;
}
.popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: translate(-50%, -50%);   
}
.popup-form1{
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transform: translate(-50%, -50%); 
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    position: relative;
    max-width: 90%;
    border-color: #007BFF;

}
.form-container h2{
    margin: 30px;
}
.form-container p{
    text-align: center;
    font-weight: bold;
}
.form-container1{
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    position: relative;
    max-width: 90%;
}
.form-container1 h2{
    color: green;
    text-align: center;
    font-weight: bold;
    margin: 40px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.form-container h2{
    text-align: center;
    font-weight: bold;
    color: orange;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.form-group select option{
    width: 60%;
    margin: 5px;
    font-size: large;
    color: #0c460c;
}
.form-group .type{
    color: #0c460c;
}
.form-group label {
    flex: 0 0 140px;
    margin-right: 10px;
    font-weight: bold;
    font-size: large;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="password"] {
    flex: 1;
    padding: 8px;
    border: 1px solid rgb(20, 95, 27);
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #0c460c;
    color: #fff;
}
