* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
   height: 100vh;
    background: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470")
    no-repeat center center/cover
}

/* wrapper */

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* card */

.login-card {
    width: 1100px;
    height: 600px;
    display: flex;
}

/* left side */

.left {
    flex: 1;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.qr {
    width: 200px;
    margin-bottom: 20px;
}

.left h3 {
    margin-bottom: 10px;
}

.left p {
    text-align: center;
    width: 300px;
}

/* right side */

.right {
    height: 100vh;
    flex: 1;
    background: #f2f2f2;
    padding: 50px;
}

.gear {
    text-align: center;
    margin-bottom: 20px;
}

.gear i {
    color: #6c63ff;
    font-size: 40px;
}

.small {
    font-size: 25px;
    margin-left: 5px;
}

.right h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* inputs */

label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
}

/* checkbox */

.checkbox {
    margin: 10px;
    display: flex;
    gap: 10px;
}

/* sign in */

.signin {
    width: 100%;
    padding: 15px;
    margin-top: 25px;
    background: #1e1e1e;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* socials */

.socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.socials button {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 2px solid;
    cursor: pointer;
}

.contact {
    border-color: #2563eb;
    color: #2563eb;
}

.google {
    border-color: #ef4444;
    color: #ef4444;
}

.twitter {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

/* MOBILE */

@media (max-width: 768px) {

    .login-card {
        width: 95%;
        height: auto;
        flex-direction: column;
    }

    .left {
        display: none;
    }

    .right {
        padding: 25px;
    }

    .socials {
        flex-direction: column;
    }

}