/* Body Styling */
body {
    background: url('/fypproject/img/recent-game/13.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for the form */
.container {
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    padding: 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Input fields */
input[type="email"], input[type="password"], input[type="text"]{
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: black;
}

/* Update button */
button, .btn-primary {
    background-color: #FFB400 !important; /* Yellow button color */
    color: black !important;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn-primary:hover {
    background-color: #FFA000 !important;
}

/* Form header */
h1 {
    font-size: 36px;
    font-weight: bold;
    color: #FFB400; /* Yellow heading text */
    margin-bottom: 30px;
}

/* Alerts for messages like incorrect login or successful update */
.alert {
    margin-bottom: 20px;
    font-size: 14px;
    padding: 10px;
    background-color: #FF0000; /* Red background for error */
    color: white; /* White text for contrast */
    border-radius: 0px;
}

.alert-success{
    background-color: green !important; /* Red background for error */
}

/* Adjust margin and styling for text paragraphs */
.container div p {
    margin-top: 20px; /* Adjust this value to your preference */
    font-size: 16px; /* Optional: make it a bit smaller */
    color: #fff; /* Ensure it's visible against your background */
}

/* Password wrapper for positioning the eye icon */
.password-wrapper {
    position: relative;
}

/* Style for the eye icon */
.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Go Back button */
.delete-btn {
    display: block;
    background-color: #FF0000; /* Red button for 'Go Back' */
    color: white !important;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
}

.delete-btn:hover {
    background-color: #CC0000; /* Darker red on hover */
}
