body{
    background-color: #1E1E1E;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
}

#logo_img {
    width: 50px;
    height: auto;
}

#logo_text {
    font-size: 24px;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    padding-top: 35px;
}

.top-center-content {
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#monitor_text{
    font-size: 18px;
    color: white;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin-top: 20px;
    animation: fadeSlideIn 1s 0.3s ease-out; /* 0.3s delay for staggered effect */
    opacity: 0;
    animation-fill-mode: forwards;
}

#monitor{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: auto;
    margin-top: 20px;
    animation: fadeSlideIn 1s ease-out;
}

.access-buttons{
    display: flex;
    top: 25px;
    right: 25px;
    justify-content: right;
    position: absolute;
}

#signup-button{
    background-color: #292929;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

#login-button{
    background-color: #1E1E1E;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

#signup-button:active {
    background-color: #444444;
}

#login-button:active {
    background-color: #444444;
}

.payment-plans{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 300px;
    margin-bottom: 200px;
}

.plan {
    background-color: #292929;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;  /* Include padding in height */
    position: relative; 
}

.select-button {
    background-color: #1E1E1E;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-top: auto; /* Pushes the button to the bottom */
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.select-button:active {
    background-color: #444444;
}

.price {
    font-size: 50px;
    margin: 10px;
    margin-top: auto; /* Pushes the price to the bottom of the plan container */
}

.rate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.warning {
    color: #FFA500; /* Orange color for warning */
    font-size: 14px;
    margin-top: 10px;
}

#top-bar {
    position: fixed;
}

.login-container{
    width: 400px;
    font-family: "Inter", sans-serif;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.login-container h1{
    text-align: center;
}

.login-container input{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

#submit {
    background-color: #2b5bcc;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    width: 100%;
}

#register {
    background-color: #555555;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    width: 100%;
}

#submit:hover {
    background-color: #0041da;
}

#register:hover {
    background-color: #666666;
}

#submit:active {
    background-color: #0039be;
}

#register:active {
    background-color: #444444;
}

.error-message {
    color: #FF5555; /* Red color for errors */
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.label {
    font-size: 14px;
    margin-top: 10px;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.success-body {
    display: flex;
    justify-content: center;  /* centers horizontally */
    align-items: center;      /* centers vertically */
    height: 100vh;            /* full viewport height */
}

.success-message {
    font-size: 14px;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: normal;
    padding-top: 5px;
    text-align: center;
}