.father-main {
    font-family: 'Arial', sans-serif;
    z-index: 98;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 2em;
}
.content {
    display: flex;
    flex-direction: column;
}
.login-container {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}
h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}
h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}
.input-group {
    margin-bottom: 1rem;
}
.input-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}
.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}
.input-group input:focus {
    border-color: #00bcd4;
    outline: none;
}
.father-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.login-btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}
.login-btn:hover {
    background-color: #0097a7;
}
.extra-options {
    text-align: center;
    margin-top: 1rem;
}
.extra-options a {
    color: #00bcd4;
    text-decoration: none;
}
.extra-options a:hover {
    text-decoration: underline;
}
.extra-options p {
    font-size: 0.9rem;
    margin-top: 1rem;
}