html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    width: 400px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-control{
    box-shadow: none !important;
}
.swal2-popup {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px !important;
    padding: 20px 30px !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}
.swal2-title {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
}
.swal2-html-container {
    font-size: 1rem !important;
    color: #555555 !important;
    margin-bottom: 20px !important;
}
.swal2-styled.swal2-confirm {
    background-color: #007bff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    transition: background-color 0.2s ease !important;
}
.swal2-styled.swal2-confirm:hover {
    background-color: #0056b3 !important;
}