.forgot-container {
    text-align: center;
    max-width: 450px;
    margin: 30px auto 15px auto;
    padding: 50px;
    background: linear-gradient(
  to bottom right,
  #000000 0%,
  #929292 50%,
  #000000 0%
);
    border-radius: 12px;
    box-shadow:
        0 15px 40px rgba(108, 108, 108, 0.7),
        0 0 0 1px rgb(75, 74, 74);
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.forgot-container h2 {
    font-size: 30px;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.forgot-container p {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.forgot-container input {
    padding: 18px;
    border: 1px solid #0a0808;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    background-color: rgb(11, 16, 0);
    color: #f0f0f0;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.forgot-container input:focus {
    border-color: black;
    box-shadow: 0 0 0 3px rgba(123, 79, 252, 0.3);
}

.otp-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px; /* Added margin for spacing with other elements */
}

.verify-btn {
    background-color: rgb(40, 40, 40); /* Consistent dark button background */
    color: silver; /* User's chosen text color */
    padding: 16px 25px; /* Consistent button padding */
    border: none;
    font-size: 16px; /* Consistent button font size */
    cursor: pointer;
    border-radius: 8px; /* Consistent button border-radius */
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.verify-btn:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

button[type="submit"] {
    width: 100%;
    background-color: #111;
    color: silver;
    border: none;
    padding: 18px;
    margin-top: 25px; /* Adjusted margin-top for consistency */
    font-size: 18px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

button[type="submit"]:hover {
    background-color: grey;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}