@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
*,
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #ff8926, #b3491e, #e26022);
}

.container {
    width: 90vw;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas: "login";
    box-shadow: 0 0 17px 10px rgb(0 0 0 / 30%);
    border-radius: 20px;
    background: white;
    overflow: hidden;
}

.design {
    grid-area: design;
    display: none;
    position: relative;
}

.rotate-45 {
    transform: rotate(-45deg);
}

.design .pill-1 {
    bottom: 0;
    left: -40px;
    position: absolute;
    width: 80px;
    height: 200px;
    background: linear-gradient(#ff8926, #b3491e, #e26022);
    border-radius: 40px;
}

.design .pill-2 {
    top: -100px;
    left: -80px;
    position: absolute;
    height: 450px;
    width: 220px;
    background: linear-gradient(#ff8926, #b3491e, #e26022);
    border-radius: 200px;
    border: 30px solid #ff8926;
}

.design .pill-3 {
    top: -100px;
    left: 160px;
    position: absolute;
    height: 200px;
    width: 100px;
    background: linear-gradient(#ff8926, #b3491e, #e26022);
    border-radius: 70px;
}

.design .pill-4 {
    bottom: -180px;
    left: 220px;
    position: absolute;
    height: 300px;
    width: 120px;
    background: linear-gradient(#ff8926, #b3491e);
    border-radius: 70px;
}

.login {
    grid-area: login;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
}

.login h3.title {
    margin: 15px 0;
}

.text-input {
    background: #d1d0d0;
    height: 40px;
    display: flex;
    max-width: 60%;
    width: 1000px;
    align-items: center;
    border-radius: 10px;
    padding: 0 15px;
    margin: auto;
    margin-bottom: 10px;
}

.text-input input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    margin-left: 10px;
}

.text-input i {
    color: #b3491e;
}

::placeholder {
    color: #b3491e;
}

.login-btn {
    width: 70%;
    padding: 10px;
    color: white;
    background: linear-gradient(to right, #ff8926, #b3491e, #e26022);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

a {
    font-size: 12px;
    color: #ff8926;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

a.forgot {
    margin-top: 35px;
}

.create {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
}

.create i {
    color: #ff8926;
    margin-left: 10px;
}

@media (min-width: 768px) {
    .container {
        width: 50vw;
        grid-template-columns: 50% 50%;
        grid-template-areas: "design login";
    }
    .design {
        display: block;
    }
}