/* Global styles */
#sticky-button {
    background-color: #2c2c2c; /* Dark background for button */
    color: #fff; /* Light text color */
    width: 125px;
    
    border-radius: 10px;


}

/* Initial Button Section */
#initial {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#addNotesButton {
    background-color: #2c2c2c; /* Dark background for button */
    color: #fff; /* Light text color */
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
    font-size: 16px;
    
}

#addNotesButton:hover {
    background-color: #444; /* Darker background on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

/* Authentication Form */
#authForm {
    display: block;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333; /* Darker background */
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#authForm form {
    display: flex;
    flex-direction: column;
}

#authForm input, #authForm button {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

#authForm input {
    background-color: #444; /* Darker input background */
    color: #fff;
}

#authForm button {
    background-color: #555; /* Darker button background */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px; /* Ensure font size matches */
    width: 100%; /* Ensure full width */
}

#authForm button:hover {
    background-color: #666; /* Slightly lighter on hover */
}

#switchToLogin {
    background-color: #444; /* Darker background for switch button */
    width: 100%; /* Make button full width */
}

#switchToLogin:hover {
    background-color: #555; /* Slightly lighter on hover */
}

/* Sticky Note */
#stickyNote {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    background-color: #2c2c2c; /* Darker background */
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#stickyNote textarea {
    width: 100%;
    height: 150px;
    background-color: #333; /* Darker textarea background */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    resize: none; /* Prevent resizing */
}

#stickyNote button {
    margin-top: 10px;
    background-color: #555; /* Darker button background */
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    transition: background-color 0.3s;
}

#stickyNote button:hover {
    background-color: #666; /* Slightly lighter on hover */
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.8rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    font-size:x-small;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   button:hover .button-text {
    color: #fff;
   }