*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menyembunyikan h2 di luar container */
body > h2{
    display: none;
}

.container{
    width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid #076eff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.container h2{
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
}

.input-group{
    margin-bottom: 15px;
}

.input-group input{
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus{
    border-color: #0a6ef9;
    box-shadow: 0 0 5px rgba(13,110,253,0.3);
}

.btn{
    width: 100%;
    padding: 12px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover{
    background-color: #0b5ed7;
}

.link{
    text-align: center;
    margin-top: 15px;
}

.link a{
    color: #0d6efd;
    text-decoration: none;
}

.link a:hover{
    text-decoration: underline;
}
.container{
    width: 380px;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border-top: 5px solid #0d6efd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.container h2{
    text-align: center;
    color: #0d6efd;
    margin-bottom: 25px;
    font-size: 28px;
}

.input-group{
    margin-bottom: 15px;
}

.input-group input{
    width: 100%;
    padding: 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: .3s;
}

.input-group input:focus{
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13,110,253,0.3);
}

.btn{
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.btn:hover{
    background: #0b5ed7;
    transform: translateY(-2px);
}

.link{
    text-align: center;
    margin-top: 15px;
}

.link a{
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
}

.link a:hover{
    text-decoration: underline;
}
.profile-info{
    margin-bottom: 20px;
}

.profile-info p{
    background: #f8fafc;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
    color: #334155;
}

.logout-btn{
    display: block;
    text-align: center;
    text-decoration: none;
    background: #dc3545;
}

.logout-btn:hover{
    background: #bb2d3b;
}