body {
    all: unset;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'SCDream_regular', 'GmarketSansMedium', 'Nixgon-Regular', sans-serif;
    background: #131c25;
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    background: rgba(0, 0, 0, .65);
    box-sizing: border-box;
    box-shadow: 10px 15px 15px rgba(95, 95, 95, .7);
    border-radius: 10px;
}

.box .company img {
    position: absolute;
    top: -50px;
    left: calc(50% - 75px);
    width: 150px;
    border-radius: 20px;
    opacity: 0.9;
}

.box .company img:hover {
    opacity: 1;
}

.box h2 {
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.box .inputBox {
    position: relative;
}

.box .inputBox input[type='text'], input[type='password'] {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.box .inputBox label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    pointer-events: none;
    transition: .5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label {
    top: -19px;
    left: 0;
    color: #03a9f4;
    font-size: 12px;
}

.box .checkBox {
    position: relative;
}

.box .checkBox input[type='checkbox'] {
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.box .checkBox label {
    position: absolute;
    top: -11px;
    left: 23px;
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 1px;
}

.box .checkBox input[type='checkbox']:checked + label {
    color: rgba(255, 255, 255, 1);
}

.box button[type='submit'] {
    border: none;
    outline: none;
    color: #fff;
    background: #0da2ff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.box .inputBox .withEye {
    position: relative;
}

.eyes {
    position: absolute;
    top: 9px;
    bottom: 0;
    right: 3px;
    color: #fff;
    margin: auto 2px;
    font-size: 16px;
    cursor: pointer;
}