.forgot-container {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.forgot-box {
    color: #ccc;
    background-color: #222;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    background-image: linear-gradient(to top, #111a29, #183451);
    box-shadow: 0 0 13px #0080ff;
}

.forgot-box h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0080FF;
}

.forgot-box p {
    margin-bottom: 20px;
}

.forgot-box input,
.forgot-box button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
    box-sizing: border-box;
}

.forgot-box input {
    border: 1px solid #ccc;
}

.forgot-box button {
    background-color: #0080FF;
    color: white;
    border: none;
    cursor: pointer;
}

.forgot-box button:hover {
    background-color: #006ed6;
}
