@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    font-family: Poppins;
    text-decoration: none;
}

body {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-div {
    margin: 20px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-div a {
    padding-top: 20px;
    font-size: 12px;
}

.form-div a:hover {
    color: slateblue;
}

/* Title styling */
.page-title h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* User input styling */
.user-input h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

input[type="text"],
input[type="password"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #2f80ed;
    outline: none;
}

input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #56ccf2;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #2f80ed;
    transform: translateY(-2px);
}

input[type="submit"]:active {
    transform: translateY(2px);
}

/* Registration link */
.reg-form {
    width: 450px;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: #2f80ed;
    font-size: 16px;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}


/* Main container */
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.landing-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Header Section */
.header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.header p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* User Info Section */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.user-info {
    background-color: #f3f4f7;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.user-info h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.user-info p {
    font-size: 18px;
    color: #555;
}

/* Logout Button */
.logout-button {
    background-color: #f44336;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logout-button:hover {
    background-color: #e53935;
    transform: translateY(-3px);
}

.logout-button:active {
    transform: translateY(2px);
}



