* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.left-section {
    flex: 1;
    background-color: #2d2d2d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 70%;
}

.right-section {
    flex: 1;
    padding: 40px;
    margin: 200px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    background-color: #EEEEEE;
    border-radius: 15px;
    padding: inherit;
    top: 231px;
    left: 1243px;
    gap: 0px;
    opacity: 0px;

}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #ffffff;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #e53935;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}
.forget-btn {
    width: 100%;
    padding: 10px;
    background-color: #494949;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}
.login-btn:hover {
    background-color: #d32f2f;
}

.forgot-password {
    display: block;
    margin-bottom: 20px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.signup-text {
    font-size: 14px;
}

.signup-link {
    color: #333;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

footer {
    margin-top: auto;
    font-size: 12px;
    color: #777;
}