body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #36393F;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    padding: 20px;
    background-color: #2F3136;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
}

.input-group input {
    width: 93%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: none;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-btn {
    background-color: #7289DA;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #5869A8;
}

.forgot-password, .signup-text a {
    color: #7289DA;
}

.forgot-password:hover, .signup-text a:hover {
    text-decoration: underline;
}

.signup-text {
    text-align: center;
    margin-top: 20px;
}

/* SVG Styling */
 /* Google chrome */
      @-webkit-keyframes svg-text-anim {
       40% {
          stroke-dashoffset: 0;
          fill: transparent;
        }
        60% {
          stroke-dashoffset: 0;
          fill: #3cb371;
        }
        100% {
          stroke-dashoffset: 0;
          fill: #3cb371;
        }
        
    }
    /* Most browsers */
    @keyframes svg-text-anim {
       40% {
          stroke-dashoffset: 0;
          fill: transparent;
        }
        60% {
          stroke-dashoffset: 0;
          fill: #3cb371;
        }
        100% {
          stroke-dashoffset: 0;
          fill: #3cb371;
        }
        
    }