﻿
:root {
    --white-light: rgba(255, 255, 255, 0.5) !important;
    --alice-blue: #f8f9fa !important;
    --carribean-green: #40c9a2 !important;
    --gray: #ededed !important;
}

.input-dark {
    outline: 0;
    border-radius: 25px;
    padding: 0.7rem 1rem;
    margin-top: 1rem;
    transition: all 0.6s ease;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-dark {
    background: black;
    color: white;
    outline: 0;
    border-radius: 25px;
    padding: 0.7rem 1rem;
    border: 0;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.6s ease;
    font-size: 1rem;
    font-family: inherit;
}

    .btn-dark:hover {
        background: var(--carribean-green);
    }
