@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    text-align:center;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

body{
    background: linear-gradient(to bottom, #A0DFFF, #E6F7FF);
    margin:0;
    padding:0;
    min-height:100vh;
}

#header{
    margin:auto;
    margin-top:40px;
    padding: 0 20px;
}

#header h1{
    margin-top:0;
    color:#002447 ;
}

#main{
    color:#002447 ;
    background-color:white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width:90%;
    max-width: 600px;
    margin:auto;
    padding:20px;
    padding-bottom:25px;
    border-radius:10px;
    margin-top:40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

#viewTracker{
    margin-top: 20px;
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.4s forwards, fadeOut 0.4s 3.5s forwards;
    min-width: 250px;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}