html {
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: black;
}

a {
    text-decoration: none;
    color: inherit;
    position: relative;
    font-weight: 600;
    z-index: 0;
}

a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px; /* position */
    width: 0;
    height: 1px; /* thickness */
    background-color: rgb(0, 0, 0);
    transition: width 0.5s ease; /* time */
}
a:hover::before {
    width: 100%;
}

i.intext {
    margin-left: 3px;
    margin-right: 3px;
}

button {
    background-color: #115711; /* Blue button */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
    width: 100%; /* Full width button */
    align-items: center;
}

button:hover {
    background-color: #0b380b; /* Darker blue on hover */
}

/* Form Labels */
label {
    display: block;
    margin-bottom: 8px;
    color: #555; /* Slightly darker label color */
}

/* Form Inputs and Textarea */
input,
textarea {
    width: calc(100%); /* Full width with padding adjustment */
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width calculation */
    font-size: 16px; /* Consistent font size */
}

textarea {
    height: 120px; /* Adjust height as needed */
    resize: vertical; /* Allow vertical resizing */
}

#copy-button {
    margin: 16px 0;
}

/* Error Message Styling */
.error {
    color: red;
    margin-top: 8px;
}

p.footer,
a.footer {
    font-family: 500;
    text-align: center;
}

span.glow {
    background: radial-gradient(
        circle at 100%,
        rgb(83, 99, 79),
        rgb(139, 182, 142),
        rgb(83, 99, 79)
    );
    font-weight: 600;
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animatedTextGradient 2.2s linear infinite;
}

@keyframes animatedTextGradient {
    to {
        background-position: 200% center;
    }
}

input:focus,
textarea:focus,
select:focus {
    border-color: green !important;
    outline: none !important; /* Removes the default outline if you prefer only the border to be highlighted */
}

.google-btn-logo {
    height: 20px;
    margin-bottom: -3px;
}

button.google-login-btn {
    background-color: white !important;
    color: black !important;
    border: solid !important;
    border-color: grey !important;
    border-width: 1px !important;
}

div.error-msg {
    color: red;
    text-align: center;
    margin: 5px;
}
