@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1f1f2e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    width: 900px;
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.25), 0px 10px 10px rgba(0, 0, 0, 0.22);
}

.form-container {
    padding: 50px;
    width: 50%;
}

.sign-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: auto;
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    color: #333;
    text-decoration: none;
}

.social-container a:hover {
    background-color: #ddd;
}

input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 15px 20px;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #283593;
}

a {
    color: #3f51b5;
    text-decoration: none;
    margin-top: 10px;
}

a:hover {
    text-decoration: underline;
}

.sign-up {
    background: linear-gradient(to right, #00b4db, #0083b0);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
}

.sign-up input {
    padding: 15px 20px;
    background-color: #283593;;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.sign-up input:hover {
    background-color: #132299;
}