/* MUI Label Animation */
.MuiFormControl-root {
    position: relative;
}

.MuiInputLabel-root {
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 1;
    background: white;
    padding: 0 4px;
}

.MuiInputLabel-shrink {
    top: -8px;
    font-size: 12px;
    color: #1976d2;
}

.MuiOutlinedInput-root {
    position: relative;
    border-radius: 4px;
}

.MuiOutlinedInput-input {
    padding: 16.5px 14px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.MuiOutlinedInput-notchedOutline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    pointer-events: none;
    transition: border-color 0.2s;
}

.MuiOutlinedInput-notchedOutline legend {
    visibility: hidden;
    max-width: 0;
    height: 11px;
    font-size: 0.75em;
    padding: 0;
    margin-left: 8px;
    transition: max-width 0.1s;
}

.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: #1976d2;
    border-width: 2px;
}

.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline legend {
    max-width: 1000px;
}

.MuiButton-root {
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02857em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
}

.MuiButton-contained {
    color: #fff;
    background-color: #1976d2;
}

.MuiButton-contained:hover {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

.MuiButton-fullWidth {
    width: 100%;
}