/* style.css */
@import url("dashboard.css");

/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Varela Round", sans-serif; 
}

/* Body styles */
body {
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: url("../images/bg.png");
    background-repeat:repeat;
    background-size: contain;
}

/* Form container */
form {
    background-color: var(--purple);
    padding: 20px 30px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Input fields */
input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
}

.login-btn
{
    position: fixed;
    top: 20px;
    left: 30px;

    background: var(--purple);
    color: white;
    font-family: "Varela Round", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: inset 0px -4px 0px rgba(0,0,0,0.2);

    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

/* Buttons 
button {
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #45a049;
}
*/

/* Links with buttons */
a button {
    width: 100%;
}

/* Headings */
h1 {
    margin-bottom: 10px;
    color: #333;
}

/* Error and success messages */
p {
    margin-top: 5px;
}

p.error {
    color: #ff4d4d;
}

p.success {
    color: #28a745;
}

/* Welcome message */
p.welcome {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
