:root {
    --primary: #6e62ff;
    --primary-lighter: #b7b1ff;
    --primary-light: #f3f2ff;
    --color-input-outline: #d0ccff;
    --color-text-secondary: #768285;
    --color-icon: #adb4b6;
    --color-text: #1a2f36;
    --color-text-orange: #fbaf1c;
    --color-border: #e4e6e7;
    --color-error: #F24141;
    --color-divider: #E3E6E6;
}

html, body {
    height: 100%;
    font-family: arial,sans-serif;
}

body {
    margin: 0;
    padding: 0 16px;
}

.splash {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-text);
    position: relative;
}

.splash form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.splash input {
    display: flex;
    height: 48px;
    border-radius: 8px;
    padding: 0 12px;
    border: 1px solid var(--color-divider);
    transition: 0.2s;
}

.splash input.error {
    border-color: var(--color-error) !important;
}

.splash input:focus-visible, .splash input:focus {
    border: 1px solid #6e62ff;
    outline: none;
}

.splash button {
    height: 44px;
    background: var(--primary);
    border-radius: 8px;
    padding: 0 24px;
    border: none;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.copy-right {
    text-align: center; 
    color: var(--color-text-secondary);
    position: absolute;
    bottom: 36px;
}

span.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.4);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}