@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#000;

    color:#00bfff;

    font-family:'Orbitron',sans-serif;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.container{

    width:600px;

    text-align:center;
}

.logo{

    font-size:72px;

    font-weight:900;

    letter-spacing:4px;

    color:#00bfff;

    text-shadow:
        0 0 5px #00bfff,
        0 0 15px #00bfff,
        0 0 30px #00bfff;
}

.form{

    margin-top:80px;
}

.input-box{

    position:relative;

    margin-bottom:20px;
}

.input-box i{

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:#00bfff;
}

.input-box input{

    width:100%;
    height:60px;

    background:transparent;

    border:1px solid #00bfff;

    color:white;

    padding-left:60px;

    font-size:20px;

    border-radius:5px;
}

.input-box input:focus{

    outline:none;

    box-shadow:
        0 0 15px #00bfff;
}

.login-btn{

    width:100%;
    height:55px;

    background:transparent;

    border:1px solid #00bfff;

    color:#00bfff;

    cursor:pointer;

    font-size:18px;

    transition:.3s;
}

.login-btn:hover{

    background:#00bfff;

    color:black;
}

.links{

    margin-top:35px;

    display:flex;

    justify-content:center;
    align-items:center;

    gap:15px;
}

.line{

    width:180px;

    height:1px;

    background:#00bfff;
}

.links a{

    color:#00bfff;

    text-decoration:none;
}

.links a:hover{

    text-shadow:0 0 10px #00bfff;
}

/* 팝업 */

.popup{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.85);

    justify-content:center;
    align-items:center;

    z-index:999;
}

.popup-box{

    width:420px;

    background:#000;

    border:1px solid #00bfff;

    padding:35px;

    position:relative;

    color:#00bfff;

    box-shadow:
        0 0 20px #00bfff;
}

.popup-box h2{

    margin-bottom:20px;
}

.close-btn{

    position:absolute;

    top:10px;
    right:15px;

    border:none;

    background:none;

    color:#00bfff;

    font-size:30px;

    cursor:pointer;
}

/* ACCESS */

#accessScreen{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:black;

    justify-content:center;
    align-items:center;

    z-index:5000;
}

.accessText{

    font-size:60px;

    color:#00ff66;

    text-shadow:
        0 0 10px #00ff66,
        0 0 25px #00ff66;
}

/* 모바일 */

@media(max-width:768px){

    .container{

        width:90%;
    }

    .logo{

        font-size:40px;
    }

    .input-box input{

        font-size:16px;
    }

    .line{

        width:60px;
    }

    .popup-box{

        width:90%;
    }

    .accessText{

        font-size:35px;
    }

}

#databasePage{
    display:none;
    text-align:center;
}

#accessScreen{
    display:none;
}


#caseNumber{

    width:400px;
    height:50px;

    background:transparent;

    border:1px solid #00bfff;

    color:white;

    text-align:center;

    font-size:18px;

    margin-bottom:15px;
}

#databasePage button{

    width:120px;
    height:50px;

    background:transparent;

    border:1px solid #00bfff;

    color:#00bfff;

    cursor:pointer;
}

@media(max-width:768px){

    #caseNumber{

        width:90%;
    }

}

.case-btn{

    width:300px;
    height:60px;

    background:transparent;

    border:1px solid #00bfff;

    color:#00bfff;

    font-family:'Orbitron',sans-serif;

    font-size:18px;

    cursor:pointer;

    transition:.3s;
}

.case-btn:hover{

    background:#00bfff;

    color:black;

    box-shadow:
        0 0 15px #00bfff;
}

.report-box{

    width:80%;
    max-width:800px;

    margin:auto;

    padding:30px;

    border:1px solid #00bfff;

    text-align:left;

    line-height:1.8;

    box-shadow:
        0 0 15px #00bfff;
}

#reportPage{

    display:none;

    width:100%;

    text-align:center;
}

.report-box{

    width:80%;
    max-width:800px;

    margin:30px auto;

    padding:30px;

    border:1px solid #00bfff;

    text-align:left;

    line-height:2;

    box-shadow:
        0 0 20px #00bfff;
}

#reportPage .case-btn{

    margin-top:20px;
}


#reportPage{

    display:none;

    width:100%;

    height:100vh;

    overflow-y:auto;

    padding:40px;
}

.report-box{

    width:90%;
    max-width:1000px;

    margin:30px auto;

    padding:40px;

    border:1px solid #00bfff;

    text-align:left;

    line-height:2;

    box-shadow:
        0 0 20px #00bfff;
}


.status-box{

    width:400px;

    margin:0 auto;

    padding:15px;

    border:1px solid #00bfff;

    color:#00bfff;

    font-size:18px;

    box-shadow:
        0 0 10px #00bfff;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        opacity:0.6;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0.6;
    }
}

#callRecordArea{

    color:#00bfff;

    font-size:18px;

    margin-top:20px;

    min-height:60px;

    display:flex;

    justify-content:center;

    align-items:center;
}

.record-info{

    color:#00bfff;

    font-size:20px;

    margin-bottom:20px;
}

.call-table{

    width:90%;

    margin:auto;

    border-collapse:collapse;

    color:white;

    background:black;
}

.call-table th{

    border:1px solid #00bfff;

    color:#00bfff;

    padding:12px;
}

.call-table td{

    border:1px solid #00bfff;

    padding:10px;

    text-align:left;
}

.call-table tr:hover{

    background:rgba(0,191,255,.08);
}

.call-table{

    width:90%;

    margin:auto;

    border-collapse:collapse;

    table-layout:fixed;
}

.call-table th:nth-child(1),
.call-table td:nth-child(1){

    width:240px;
}

.call-table th:nth-child(2),
.call-table td:nth-child(2){

    width:80px;

    text-align:center;
}

.call-table th:nth-child(3),
.call-table td:nth-child(3){

    width:auto;
}

#recordPage{

    display:none;

    width:100%;

    height:100vh;

    overflow-y:auto;

    padding:40px;
}

#recordPage::-webkit-scrollbar{
    display:none;
}

#recordPage{
    -ms-overflow-style:none;
    scrollbar-width:none;
}