/*
Theme Name: Custom Login Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A custom WordPress theme with a login-style registration form.
Version: 1.0
*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0052cc, #007bff);
}
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-box {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.login-box h2 {
    margin-bottom: 20px;
}
.login-box input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-box button {
    background-color: #0033a0;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}
.login-box button:hover {
    background-color: #002080;
}
.secondary-btn {
    background: none;
    color: #007bff;
    border: 1px solid #007bff;
    margin-top: 10px;
}
.secondary-btn:hover {
    background: #007bff;
    color: white;
}
a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}
