* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right,#30364F,#F0F0DB, #2c5364);
    color:#000000;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
}

h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #233D4D;
}

.description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.notify-box {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 10px;
    margin-left: 40px ;
    margin-top: 20px;
}

.notify-box h3 {
    margin-bottom: 15px;
}

input {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

button {
    padding: 12px 20px;
    border: none;
    background-color: #410909;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color:#cd3131;
    transition: 0.3s ease;
    transform: scale(1.05);

}
.footer-text {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
}
hr {
    border: none;
    width: 58%;     
    height: 1px; 
    margin-left: 20%; 
    margin-bottom: 20px;   
    background-color: black;  
}