
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: linear-gradient(to right, #4d667c, #494845);
    height: 100%;
    width: 100%;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Titillium Web", sans-serif;
    
}

main {
    text-align: center;
    max-width: 90%;
    width: 600px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between elements */
}

input[type="text"] {
    width: 100%; /* Full width of its container */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #4a5159;
    color: white;
    cursor: pointer;
    font-weight: 200;
    font-style: normal;
    font-size: 16px;
}

 button:hover{
    background-color: #494845;
 }


.text-div {
    background-color: #d4edda; /* Green background color */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    margin-top: 20px; /* Space above the element */
}


/* Responsive Design */
@media (max-width: 768px) {
    main {
    width: 90%; /* Make main more flexible on smaller screens */
    }
}

@media (max-width: 480px) {
    main {
        width: 95%; /* Further reduce width on very small screens */
        padding: 10px; /* Reduce padding */
    }
}