body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
}

.container {
    position: relative;
    width: 900px;
    height: 650px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.left,
.right {
    position: absolute;
    top: 0;
    height: 100%;
}


.left {
    width: 30%;
    background-color: rgb(63, 71, 169);
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 20px;
    padding-top: 74px;

    text-align: left;
    font-size: 15px;
}

.left p {
    margin: 0;
}


.right {
    width: 70%;
    left: 30%;
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.form-container {
    max-width: 500px;
    margin: auto;
    margin-left: 130px;
}

.form-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: left;
}

.form-container p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
}

.form-container label {
    font-size: 14px;
    color: #495057;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.form-container input,
.form-container button {
    width: 90%;

    padding: 10px;

    margin-bottom: 15px;

    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
    height: 50px;

}

.form-container button {

    font-size: 25px;

}

.form-container input {
    border: 1px solid #000000;
    background-color: rgb(207, 209, 234);
}

.form-container input::placeholder {
    color: black;

}

.form-container input:focus {
    border: 2px solid rgb(63, 71, 169);

    outline: none;

    background-color: white;
}

.form-container button {
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.form-container button:hover {
    opacity: 0.9;
    background-color: rgb(63, 71, 169);
    color: white;
    transform: scale(1.05);
}


.or {
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 14px;
    position: relative;
    margin-right: 40px;
}

.or::before,
.or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ced4da;

}

.or::before {
    left: 0;

}

.or::after {
    right: 0;

}

.social-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.social-buttons button {
    width: 100%;
    border: 1px solid #ced4da;
    background: white;
    color: #6c757d;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.social-buttons button:hover {
    background-color: rgb(63, 71, 169);
    color: white;
    transform: scale(1.05);
}

.social-buttons button img {
    width: 20px;
    margin-right: 10px;
}

.form-container a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}


.overlap-img {
    position: absolute;
    top: 175px;

    left: 6%;

    width: 30%;

    z-index: 2;

    pointer-events: none;

}

.form-container p a {
    color: rgb(63, 71, 169);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;

}

.form-container p a:hover {

    text-decoration: underline;

}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 90%;
    padding-right: 40px;
}


.password-container i {
    position: absolute;
    right: 50px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #6c757d;
}

.right input[type="text"]:focus::placeholder,
.right input[type="tel"]:focus::placeholder,
.right input[type="email"]:focus::placeholder,
.right input[type="password"]:focus::placeholder {
    color: transparent;
}



@media (max-width: 480px) {
    .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .left,
    .right {
        position: static;
        width: 100%;
        height: auto;
    }

    .left {
        padding: 20px;
        text-align: center;
        height: 200px;
    }

    .right {
        padding: 20px;
        border-radius: 0;
    }

    .form-container {
        margin: 0;
        padding: 0;
    }

    .form-container input,
    .form-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    .social-buttons button {
        margin-right: 10px;
        flex: 1;
    }

    .overlap-img {
        position: absolute;
        top: 30px;
    
        left: 30%;
    
        width: 50%;
    
        z-index: 2;
    
        pointer-events: none;
    
    }

    body {
        height: auto;
    }
}


@media (min-width: 481px) and (max-width: 767px) {
    .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .left,
    .right {
        position: static;
        width: 100%;
        height: auto;
    }

    .left {
        padding: 30px;
        text-align: center;
        height: 200px;
    }

    .right {
        padding: 30px;
        border-radius: 0;
    }

    .form-container {
        margin: 0;
        padding: 0;
    }

    .form-container input,
    .form-container button {
        width: 100%;
        margin-bottom: 15px;
    }

    .social-buttons button {
        margin-right: 10px;
        flex: 1;
    }

    .overlap-img {
        position: absolute;
        top: 50px;
    
        left: 34%;
    
        width: 30%;
    
        z-index: 2;
    
        pointer-events: none;
    }

    body {
        height: auto;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .left {

        font-size: 12px;
    }
}


@media (min-width: 1025px) and (max-width: 1440px) {
    .left {

        font-size: 15px;
    }
}