@font-face {
    font-family: 'fnt';
    src: url('../font/1.woff2') format('woff2');
}

@font-face {
    font-family: 'fnt2';
    src: url('../font/2.woff2') format('woff2');
}

body {
    font-family: 'fnt', sans-serif;
    background-color: #252525;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #252525;
    position: relative;
    z-index: 10;
}

.hdr::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.cls {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.ttl {
    font-size: 18px;
}

.cnt {
    padding: 25px;
    max-width: 500px;
    margin: 0 auto;
    background-color: #252525;
}

.stl {
    font-size: 17px;
    margin: 10px 0 30px;
    text-align: right;
    font-family: 'fnt', sans-serif;
}

.dsc {
    font-size: 14px;
    color: #979797;
    margin-bottom: 18px;
    line-height: 1.5;
    text-align: right;
    font-family: 'fnt2', sans-serif;
}

.phc {
    position: relative;
    margin-bottom: 0.1px;
    border: 0.1px solid #818181;
    border-radius: 2px;
    padding: 0.1px;
    transition: border-color 0.1s;
}

.phc.err {
    border-color: rgb(252, 100, 100);
}

.phc:focus-within {
    border-color: rgb(252, 100, 100);
}

.cdl {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-family: 'fnt', sans-serif;
    font-size: 16px;
}

.phi {
    width: 100%;
    padding: 10px 10px 10px 50px;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    color: #d8d8d8;
    font-family: 'fnt2', sans-serif;
    text-align: right;
    font-size: 16px;
    direction: ltr;
    outline: none;
}

.erm {
    color: rgb(252, 100, 100);
    font-size: 14px;
    margin-bottom: 15px;
    text-align: right;
    display: none;
    font-family: 'fnt2', sans-serif;
}

.trm {
    margin-top: 30px;
    padding: 0 1px 0 1px;
    text-align: right;
}

.trt {
    font-size: 13px;
    color: #d8d8d8;
    font-family: 'fnt', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.1px;
}

.lnk {
    color: rgb(252, 100, 100);
    text-decoration: none;
}

.btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.dln {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 10;
}

.sbt {
    width: 100%;
    padding: 9.5px;
    background-color: rgb(221, 67, 67);
    color: #313131;
    border: none;
    border-radius: 5px;
    font-family: 'fnt2', sans-serif;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sbt.ldg {
    background-color: #545454;
    color: white;
}

