@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: blue;
    padding: 10px;
}

.container {
    max-width: 350px;
    margin: 50px auto;
    background-color: lime;
}

.line {
    max-height: 10px;
    width: 100px;
    border-top: 2px solid #06ad22;
}


option {
    font-size: 14px;
}

.text-muted {
    font-size: 12px;
    color: #0a0a0a !important;
}

.c-g {
    color: #06ad22;
    font-weight: 800;
}

.dropdown-toggle::after {
    content: '';
    border: none;
}

.form-select {
    font-size: 14px;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid #ddd;
}

.btn.btn-primary {
    text-transform: uppercase;
    font-size: 14px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #06ad22;
    font-weight: 600;
    outline: none;
    border: none;
    transition: background-color 0.3s;
}

.btn.btn-primary:hover {
    background-color: #32a846; 
}