@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
}

body {
    height: 100vh;
    font-family: 'Libre Franklin', sans-serif;
}

main, .social-icons > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    flex-flow: column nowrap;
    padding: 0 2rem;
}

.logo {
    width: 50px;
}

h1 {
    font-weight: 300;
    color: #969696;
    margin-top: 2rem;
    font-size: 20px;
}

h1>strong {
    font-weight: 700;
    color: #000;

}

p {
    margin-top: 1rem;
    font-size: 14px;
}

.input-section {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

input, button {
    padding: 0.8rem 2rem;
    border-radius: 25px;
}

input {
    border: 1px solid #c2d3ff;
}

button {
    border: none;
    background-color: #4f7df3;
    color: #fff;
    font-weight: 600;
    height: 40px;
}

button:hover {
    cursor: pointer;
}

main > img {
    width: 311px;
    height: auto;
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 4rem;
}

.social-icons > div {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 1px 1px 3px -1px #000;
}

div > img {
    width: 25px;
    height: auto;
}

.copyright {
    color: #969696;
    margin-top: 1.5rem;
    font-size: 12px;
}

footer > p {
    text-align: center;
    font-size: 10px;
}

.error-msg {
    color: #ff5263;
    font-style: italic;
    font-size: 12px;
    text-align: center;
}

.error-state {
    border-color: #ff5263;
}

@media (min-width:1440px) {
    main {
        height: 90vh;
    }

    .input-section {
        flex-flow: row nowrap;
    }

    input {
        border-color: #969696;
    }

    main > img {
        width: 383px;
    }

}