﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    overflow: auto;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f8f8;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.color-scheme {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

    .color-scheme .top-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: #a4b0ff;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .color-scheme .bottom-left {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 300px;
        height: 300px;
        background: #88d1ac;
        clip-path: polygon(0 0, 0 100%, 100% 100%);
    }

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #f8f8f8 100%);
    position: relative;
    z-index: 1;
    overflow: auto;
    padding: 20px;
}

.content {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 20px;
    position: relative;
    z-index: 1;
}

    .content h1 {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 700;
        text-align: center;
    }

    .content p {
        margin-bottom: 20px;
        color: #555;
        font-size: 16px;
        line-height: 1.6;
    }

    .content a {
        display: inline-block;
        margin-top: 20px;
        text-decoration: none;
        color: #007bff;
        font-size: 16px;
        font-weight: 500;
	float: right;
    }

.input-group {
    margin-bottom: 20px;
}

    .input-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        font-size: 14px;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
    }

input[type="email"], button {
    width: 80%; /* Adjusted width */
    margin: 0 auto;
    display: block;
}

button {
    padding: 12px;
    border: none;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
    margin-top: 20px; /* Added margin for spacing */
}

    button:hover {
        background: linear-gradient(90deg, #0056b3, #007bff);
        transform: translateY(-2px);
    }

    button:active {
        background: linear-gradient(90deg, #003d7a, #004a99);
        transform: translateY(1px);
    }


.message {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}
