* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
}

.container {
    display: flex;
    width: 900px;
    height: 500px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.login-section,
.register-section {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-section {
    background: #fff;
}

.register-section {
    background: linear-gradient(to right, #00b35a, #008f4c);
    color: white;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.social-btn {
    background: #ddd;
    border: none;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

input {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.forgot {
    font-size: 12px;
    color: gray;
    text-decoration: none;
    margin-bottom: 15px;
}

.sign-in-btn {
    background: #008f4c;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.sign-in-btn:hover {
    background: #006837;
}

.register-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 80%;
}

.sign-up-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 40px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
}

.sign-up-btn:hover {
    background: white;
    color: #008f4c;
}
