* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #2f5d50;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 1000px;
    background-color: white;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.left-side {
    width: 45%;
    background-color: #2f5d50;
    color: white;
    padding: 40px;
}

.logo h2 {
    margin-bottom: 100px;
}

.text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.text p {
    line-height: 1.6;
}

.copyright {
    margin-top: 180px;
    font-size: 14px;
}

.right-side {
    width: 55%;
    padding: 40px;
}

.tabs {
    display: flex;
    margin-bottom: 30px;
}

.tabs button {
    width: 50%;
    padding: 12px;
    border: none;
    cursor: pointer;
    background-color: #f2f2f2;
    font-size: 16px;
}

.tabs button:first-child {
    background-color: white;
    border: 1px solid #ddd;
}

form h1 {
    margin-bottom: 10px;
}

form p {
    color: gray;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-box {
    position: relative;
}

.password-box i {
    position: absolute;
    right: 15px;
    top: 14px;
    cursor: pointer;
    color: gray;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember input {
    width: auto;
    margin: 0;
}

.options a {
    text-decoration: none;
    color: orange;
}

.terms {
    margin-top: 20px;
    margin-bottom: 20px;
}

.terms .remember {
    align-items: flex-start;
}

.terms span {
    line-height: 1.5;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: orange;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: darkorange;
}

a {
    text-decoration: none;
    color: orange;
}

form p:last-child {
    text-align: center;
    margin-top: 20px;
}

form span {
    color: orange;
    cursor: pointer;
    font-weight: bold;
}

#signup-form {
    display: none;
}

@media (max-width: 768px) {

    .container {
        flex-direction: column;
        width: 95%;
    }

    .left-side,
    .right-side {
        width: 100%;
    }
    .left-side {
        text-align: center;
    }
    .text h1 {
        font-size: 30px;
    }
    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}