* {
    margin: 0;
    border: 0;
    padding: 0;
}

.pin-container {
    position: relative;
    display: flex;
    width: 800px;
    height: 345px;
    background-color: #F2F2F2;
    border: 1px solid #EAE1E1;
    border-radius: 15px;
    user-select: none;
    overflow: hidden;
    transition: border 0.2s, width 0.4s, height 0.4s;
    justify-content: center;
}

.pin-container.compact {
    width: 800px;
    height: 335px;
}

.pin-header {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 31px;
    font-weight: 500;
}

.pin-input-section {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50%;
}

.pin-inputs {
    display: flex;
    width: 590px;
    height: 86px;
    justify-content: space-between;
}

.pin-input {
    width: 70px;
    height: 100%;
    background-color: #E5E5E5;
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    font-size: 32px;
    padding: 25px;
}

input {
    outline: inherit;
}