@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
html {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #ffffff;
    background: #2b0404;
    backdrop-filter: blur(2px);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page {
    display: flex;
    justify-content: center;
    margin: 230px auto;
    background-color: #20000096;
    width: 450px;
    height: 450px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: #5a0707cc 0 0 90px 5px;
}

.page .card {
    display: block;
    text-align: center;
    margin: 10px auto;
}

.page .card .card-header {
    display: block;
}

.page .card .card-header .head-title {
    font-size: 28px;
    margin-top: 5px;
}

.page .card .card-header img {
    width: 280px;
    height: 70px;
}

.page .card .card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page .card .card-body .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page .card .card-body .row label {
    margin-left: 15px;
    margin-bottom: 5px;
}

.page .card .card-body .row input {
    width: 300px;
    height: 42px;
    border-radius: 25px;
    padding-left: 20px;
    color: #ff0000;
    border: none;
    background-color: #8dd5ff31;
}

.page .card .card-body .row input::placeholder {
    padding-left: 5px;
    color: #ffffff8a;
}

.page .card .card-body .row input:focus {
    outline: none;
    color: #ff0000;
    box-shadow: #ff00007e 0 0 100px 13px;
}

.page .card .card-footer {
    display: flex;
    margin-top: 35px;
    flex-direction: column;
}

.page .card .card-footer button {
    width: 300px;
    height: 42px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    background-image: linear-gradient(90deg, #460000 0%, #e33030 51%, #460000 100%);
    color: #ffffff;
    cursor: pointer;
}

.page .card .card-footer button:hover {
    background: #8a1212;
    box-shadow: #ff00007e 0 0 80px 13px;
}

.page .card .card-footer p {
    margin-top: 20px;
    color: #ffffff;
    font-weight: bold;
}

.message-success,
.alert {
    margin-top: 25px;
}

.alert {
    color: #ff0000;
}

/* Tambahan */
.my-swal-popup, .swal2-modal {
    border-radius: 0 !important; /* Atur sesuai kebutuhan */
    background-color: #410000;
    color: #ffffff;
    box-shadow: #ffffff23 1px 2px 2px;
}

.swal2-confirm {
    border-radius: 0 !important; /* Atur sesuai kebutuhan */
    background-image: linear-gradient(90deg, #460000 0%, #e33030 51%, #460000 100%) !important;
    color: #ffffff !important;
}

.swal2-confirm:focus, .swal2-actions:focus {
    border: none;
}

.swal2-cancel {
    border-radius: 0 !important; /* Atur sesuai kebutuhan */
}