body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 700px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(219, 12, 75, 0.9);
    margin-top: 80px;
}

.header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.red-line, .blue-line {
    height: 5px;
    border: none;
    margin: 3px;
}

.red-line {
    background-color: #db0c4b;
    padding: 0.8px;
}

.blue-line {
    background-color: #0e3b83;
    padding: 0.8px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    color: #555;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
}

.input-container img {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: calc(100% - 22px);
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #db0c4b;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0e3b83;
}

p {
    margin-top: 20px;
    color: #555;
}

a {
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.my-popup {
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 7px;
    width: 350px;
    height: 350px;
}
.my-title {
    color: #0e3b83;
    font-weight: bold;
}
.my-content {
    color: #000000;
}
.my-button {
    background-color: #0e3b83 !important;
    color: #fff !important;
}

