* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffd6e0, #ffb6c1);
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h2 {
    color: #d63384;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
    outline: none;
    transition: 0.3s;
}

button {
    background: #ff4081;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    transition: 0.3s;
}

button:hover {
    background: #d63384;
}

@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }

    input, button {
        max-width: 100%;
    }
}
.swal2-actions {
    justify-content: center !important;
  }
  