/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 50px;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table td:first-child {
    font-weight: bold;
    color: #555;
}

table td:last-child {
    color: #666;
}

table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .container {
        width: 90%;
    }
    table td {
        padding: 8px;
    }
}
/* style.css */

/* Gaya untuk foto profil */
.profile-photo {
    text-align: center;
    margin-bottom: 20px;
}

.profile-photo img {
    width: 150px; /* Atur lebar foto */
    height: 150px; /* Atur tinggi foto */
    border-radius: 50%; /* Membuat foto menjadi lingkaran */
    object-fit: cover; /* Agar foto tidak terdistorsi */
    border: 3px solid #ddd; /* Border untuk foto */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gaya untuk tombol kembali */
.back-button {
    text-align: center;
    margin-top: 20px;
}

.back-button .btn {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.back-button .btn:hover {
    background-color: #45a049;
}
/*Login */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(BG1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: color;
    background-color: #00000080;
}
.container{
    width: 430px;
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid #ffffff33;
    box-shadow: 0 0 10px #0000001a;
    backdrop-filter: blur(20px);
}
.container h2{
    font-size: 34px;
    text-align: center;
    letter-spacing: 1px;
}
.input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid #ffffff33;
    outline: none;
    border-radius: 45px;
    font-size: 17px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
    color: #fff;
}
.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.remember{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: -15px 0 15px;
}
.remember label input{
    accent-color: #fff;
    margin-right: 5px;
}
.remember a{
    text-decoration: none;
    color: #fff;
}
.remember a:hover{
    text-decoration: underline;
}
.btn{
    width: 100%;
    height: 45px;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 45px;
    box-shadow: 0 0 10px #0000001a;
    cursor: pointer;
}
.register{
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
.register a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}
.register a:hover{
    text-decoration: underline;
}