﻿/* MFA.css */


.button-group {
    display: flex;
    justify-content: center;
}

.setupdiv:hover {
    transition: 200ms;
    transform: translateY(-3px);
    color: black;
    border: solid 1px grey;
    box-shadow: 5px 5px 5px grey;
}

.setupdivs {
    background-color:white;
    border: 1px solid grey;
    justify-items: center;
    align-content: space-around;
    display: grid;
    padding: 10px;
    margin: 10px;
    height: 280px;
    width: 250px;
    border-radius: 5px;
}

.mfacodetextbox {
    height: 40px;
    width: 380px;
    font-size: 25px;
    color: grey;
    border-style: solid;
    border-color: #000;
    border-radius: 5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 6px;
}

.switch input {
    display: none;
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 10px;
    transition: 0.4s;
    height: 12px;
}


.slider::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 40%;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider::before {
    transform: translateX(8px);
}