@font-face {
    font-family: FiraSans-Regular;
    src: url(https://amwdezign.com/fonts/FiraSans/FiraSans-Regular.ttf);
}

.alarm-panel {
    --corner-radius: 0.8rem;
    --shadow: rgba(0, 0, 0, 0.7);
    --space-letter: 0.1%;
    --off-white:#fffff2;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: clamp(17.1875rem, 27.734375vw + 11.640625rem, 39.375rem);
    font-family: FiraSans-Regular;
    min-height: 607px;
    margin: 3.45% auto;
    padding: 8px;
    /* border: 3px solid rgba(0, 0, 0, 0.5); */
    box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.5), 2px 2px 16px rgba(0, 0, 0, 0.7);
    border-radius: var(--corner-radius);
    background-color: var(--off-white);
}

.display {
    display: flex;
    width: 91.2698%;
    margin-block-start: 45px;
    /* height: 91px; */
    border: 3px solid rgba(83, 82, 83, 0.956);
    border-radius: var(--corner-radius);
    background-color: #00ff00;
}

.message-center {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 67%;
    margin-inline: auto;
    border: 1px solid transparent;
}

.message-center > h4 {
    font-size: clamp(0.938rem, 0.547vw + 0.828rem, 1.375rem);
    letter-spacing: var(--space-letter);
    margin-block: 0.4rem;
}

.alarm-btns {
    display: flex;
    flex-direction: column;
    width: 114px;
    /* margin-inline-end: 14px; */
}

.passcode {
    width: 88%;
    /* font-size: clamp(0.794rem, 0.633vw + 0.767rem, 1.4rem); */
    font-size: clamp(0.875rem, 0.625vw + 0.75rem, 1.375rem);
    text-align: center;
    margin: 0.7rem auto;
    padding: 0.4rem;
    /* border: none; */
    outline: none;
    background-color: transparent;
}

::placeholder {
    color: black;
}

.btns {
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: var(--space-letter);
     width: 100%;
    height: 45.5px;
    /* border: none; */
    box-shadow: 2px 0 4px var(--shadow);
    transition: all 0.2s ease;
}

button, .passcode {
    border: none;
}

button, .display, .enter-btn {
    height: 91px;
}

.away-btn {
    border-radius: var(--corner-radius) 0 0 0;
}

.stay-btn {
    border-radius: 0 0 0 var(--corner-radius);
}

.key-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 4% 4% 3.5%;
    gap: 16px;
    /* border: 1px solid; */
}

.btns, .key-btn, .key-btn-enter {
    cursor: pointer;
}

.key-btn:hover, .key-btn-enter:hover {
    background-color: #00ff00;
}

.key-btn {
    border-radius: var(--corner-radius);
    flex: 1 2 25%;
    font-size: inherit;
    font-weight: inherit;
    /* height: 91px; */
    /* border: none; */
    box-shadow: 0 0 4px var(--shadow);
    background-color: var(--off-white);
}


.key-btn-enter {
    border-radius: var(--corner-radius);
    flex: 5 2 38.3016%;
    font-size: inherit;
    font-weight: inherit;
    /* height: 91px; */
    box-shadow: 0 0 4px var(--shadow);
    background-color: var(--off-white);
}