@font-face {
    font-family: "Manrope";
    src: url("/static/fonts/Manrope-VariableFont_wght.ttf");
    font-display: swap;
}
body {
    height: 100vh;
    font-family: "Manrope", sans-serif;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #353535;
    background-image: url('/static/gradient.svg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 200% 200%;
    background-attachment: fixed;
}

.form-container {
    background-color: #fff;
    border-radius: 16px;
    width: 280px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .345);
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    img{
        height: 36px;
        display: block;
    }

    form {
        width: 100%;

        .form-group{
            margin-top: 8px;

            &:last-child {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                margin-top: 24px;
                button {
                    border: 0;
                    background-color: #ff6900;
                    color: #fff;
                    padding: 18px;
                    text-transform: uppercase;
                    font-weight: 700;
                    letter-spacing: 1px;
                    transition: 200ms;
                    &:hover{
                        background-color: #272727;
                        cursor: pointer;
                    }
                }
                span{
                    align-self: flex-end;
                    font-style: italic;
                    color: rgba(0,0,0,0.8);
                    img{
                        height: 24px;
                        width: auto;
                    }
                }
            }

            label {
                font-weight: 700;
            }

            input {
                width: 100%;
                padding: 10px;
                margin-top: 8px;
                border-radius: 8px;
                border: 1px solid rgb(217, 217, 217);
                &:focus-visible {
                    outline: none;
                    box-shadow: 0 0 0 2px #FA8C28;
                }
            }

            span.status {
                width: 100%;
                display: inline-block;
                font-weight: 700;
                &.success {
                    color: #27ae60;
                }
                &.failed {
                    color: #ff7070;
                }
            }
        }
    }
}

@media (min-width: 480px){
    .form-container {
        width: 400px;
    }
}
@media (min-width: 600px){
    .form-container {
        width: 540px;
    }
}