﻿@import "transition-style";
@keyframes circle-swoop {
    from {
        clip-path: var(--circle-top-right-out);
    }

    to {
        clip-path: var(--circle-bottom-right-in);
    }
}

.--in-custom {
    --transition__duration: 1s;
    --transition__easing: ease-in-out;
    animation-name: circle-swoop;
}


body, html {
    display: grid;
    place-items: center;
    height: 100vh;
    background: linear-gradient(0deg, #f15a3c  0%, #000000 100%);
    font-family: Arial, Helvetica, sans-serif;
}

body, p, input, select, textarea, button {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
    font-size: 16px;
}

div, p {
    color: #ac9ccc;
    text-shadow: 1px 1px 1px #4c2c94;
}


form {
    padding: 16px;
    width: 400px;
    margin: 0 auto;
}

.segment {
    padding: 32px 0;
    text-align: center;
}

button, input {
    border: 0;
    outline: 0;
    font-size: 16px;
    border-radius: 320px;
    padding: 16px;
    background-color: white;
    text-shadow: 1px 1px 0 white;
    color: white;
}

label {
    display: block;
    margin-bottom: 24px;
    width: 100%;
}

input {
    margin-right: 8px;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    &:focus{
        box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
    }
}

button {
    color: #61677C;
    font-weight: bold;
    box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-weight: 600;
    &:hover{
        box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
    }
    &:active {
        box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
    }
    .icon {
        margin-right: 8px;
    }
    &.unit {
        border-radius: 8px;
        line-height: 0;
        width: 48px;
        height: 48px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 8px;
        font-size: 19.2px;
        .icon{
            margin-right: 0;
        }
    }
    &.red {
        display: block;
        width: 100%;
        color: #AE1100;
    }
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    label{
        margin: 0;
        flex: 1;
    }
}